Java Debug Interface

Uses of Interface
com.sun.jdi.Value

Packages that use Value
com.sun.jdi This is the core package of the Java Debug Interface (JDI), it defines mirrors for values, types, and the target VirtualMachine itself - as well bootstrapping facilities. 
 

Uses of Value in com.sun.jdi
 

Subinterfaces of Value in com.sun.jdi
 interface ArrayReference
          Provides access to an array object and its components in the target VM.
 interface BooleanValue
          Provides access to a primitive boolean value in the target VM.
 interface ByteValue
          Provides access to a primitive byte value in the target VM.
 interface CharValue
          Provides access to a primitive char value in the target VM.
 interface ClassLoaderReference
          A class loader object from the target VM.
 interface ClassObjectReference
          An instance of java.lang.Class from the target VM.
 interface DoubleValue
          Provides access to a primitive double value in the target VM.
 interface FloatValue
          Provides access to a primitive float value in the target VM.
 interface IntegerValue
          Provides access to a primitive int value in the target VM.
 interface LongValue
          Provides access to a primitive long value in the target VM.
 interface ObjectReference
          An object that currently exists in the target VM.
 interface PrimitiveValue
          The value assigned to a field or variable of primitive type in a target VM.
 interface ShortValue
          Provides access to a primitive short value in the target VM.
 interface StringReference
          A string object from the target VM.
 interface ThreadGroupReference
          A thread group object from the target VM.
 interface ThreadReference
          A thread object from the target VM.
 interface VoidValue
          Provides access to a primitive void value in the target VM.
 


Java Debug Interface