Java Debug Interface

com.sun.jdi
Interface IntegerValue


public abstract interface IntegerValue
extends PrimitiveValue, java.lang.Comparable

Provides access to a primitive int value in the target VM.

Since:
1.3

Method Summary
 boolean equals(java.lang.Object obj)
          Compares the specified Object with this IntegerValue for equality.
 int hashCode()
          Returns the hash code value for this IntegerValue.
 int value()
          Returns this IntegerValue as an int.
 
Methods inherited from interface com.sun.jdi.PrimitiveValue
booleanValue, byteValue, charValue, doubleValue, floatValue, intValue, longValue, shortValue
 
Methods inherited from interface java.lang.Comparable
compareTo
 
Methods inherited from interface com.sun.jdi.Value
type
 
Methods inherited from interface com.sun.jdi.Mirror
toString, virtualMachine
 

Method Detail

value

public int value()
Returns this IntegerValue as an int.
Returns:
the int mirrored by this object.

equals

public boolean equals(java.lang.Object obj)
Compares the specified Object with this IntegerValue for equality.
Returns:
true if the Object is an IntegerValue and if applying "==" to the two mirrored primitives would evaluate to true; false otherwise.
Overrides:
equals in class java.lang.Object

hashCode

public int hashCode()
Returns the hash code value for this IntegerValue.
Returns:
the integer hash code
Overrides:
hashCode in class java.lang.Object

Java Debug Interface