Spec-Zone .ru
спецификации, руководства, описания, API
Java Debug Interface

com.sun.jdi
Interface Value

All Superinterfaces:
Mirror
All Known Subinterfaces:
ArrayReference, BooleanValue, ByteValue, CharValue, ClassLoaderReference, ClassObjectReference, DoubleValue, FloatValue, IntegerValue, LongValue, ObjectReference, PrimitiveValue, ShortValue, StringReference, ThreadGroupReference, ThreadReference, VoidValue

public interface Value
extends Mirror

The value assigned to a field or variable at some point during the execution of the target VM. This interface is the root of a value hierarchy encompassing primitive and object values.

Since:
1.3

Method Summary
 Type type()
           
 
Methods inherited from interface com.sun.jdi.Mirror
toString, virtualMachine
 

Method Detail

type

public Type type()

Java Debug Interface