IBM Rational Functional Tester
Version 8.1.1000
IBM Rational Functional Tester API Reference

Project Version 2.3

com.rational.test.ft.value
Class RecognitionIndex

java.lang.Object   extended by java.lang.Number       extended by com.rational.test.ft.value.RecognitionIndex
All Implemented Interfaces:
java.io.Serializable

public class RecognitionIndex
extends java.lang.Number

Adds definition to a simple int value; this is a container class. Index values are zero-based indices that are significant, relative to a particular component.

Since:
RFT1.0
See Also:
Serialized Form

Constructor Summary
RecognitionIndex(int index)
           
 
Method Summary
 byte byteValue()
          Implements Number.byteValue with a class-specific definition.
 double doubleValue()
          Implements Number.doubleValue with a class-specific definition.
 boolean equals(java.lang.Object index)
          Overrides Object.equals with a class-specific comparison.
 float floatValue()
          Implements Number.floatValue with a class-specific definition.
 int getRecognitionIndex()
          Accesses the index value.
 int hashCode()
          Overrides Object.hashcode with class-specific code.
 int intValue()
          Implements Number.intValue with a class-specific definition.
 long longValue()
          Implements Number.longValue with a class-specific definition.
 void setRecognitionIndex(int index)
          Accesses the index value.
 short shortValue()
          Implements Number.shortValue with a class-specific definition.
 java.lang.String toString()
          Sets toString to the value that this class represents.
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

RecognitionIndex

public RecognitionIndex(int index)
Since:
RFT1.0
Method Detail

getRecognitionIndex

public int getRecognitionIndex()
Accesses the index value.

Since:
RFT1.0

setRecognitionIndex

public void setRecognitionIndex(int index)
Accesses the index value.

Since:
RFT1.0

toString

public java.lang.String toString()
Sets toString to the value that this class represents.

Overrides:
toString in class java.lang.Object
Since:
RFT1.0

hashCode

public int hashCode()
Overrides Object.hashcode with class-specific code.

Overrides:
hashCode in class java.lang.Object
Since:
RFT1.0

equals

public boolean equals(java.lang.Object index)
Overrides Object.equals with a class-specific comparison.

Overrides:
equals in class java.lang.Object
Parameters:
index - the right side of the comparison
Since:
RFT1.0

intValue

public int intValue()
Implements Number.intValue with a class-specific definition.

Specified by:
intValue in class java.lang.Number
Since:
RFT1.0

longValue

public long longValue()
Implements Number.longValue with a class-specific definition.

Specified by:
longValue in class java.lang.Number
Since:
RFT1.0

shortValue

public short shortValue()
Implements Number.shortValue with a class-specific definition.

Overrides:
shortValue in class java.lang.Number
Since:
RFT1.0

byteValue

public byte byteValue()
Implements Number.byteValue with a class-specific definition.

Overrides:
byteValue in class java.lang.Number
Since:
RFT1.0

doubleValue

public double doubleValue()
Implements Number.doubleValue with a class-specific definition.

Specified by:
doubleValue in class java.lang.Number
Since:
RFT1.0

floatValue

public float floatValue()
Implements Number.floatValue with a class-specific definition.

Specified by:
floatValue in class java.lang.Number
Since:
RFT1.0