Interface ClassObjectReference
- All Superinterfaces:
Mirror, ObjectReference, Value
An instance of java.lang.Class from the target VM.
Use this interface to access type information
for the class, array, or interface that this object reflects.
- Since:
- 1.3
- See Also:
-
Field Summary
Fields declared in interface ObjectReference
INVOKE_NONVIRTUAL, INVOKE_SINGLE_THREADED
Modifier and TypeFieldDescriptionstatic final int
Perform non-virtual method invocationstatic final int
Perform method invocation with only the invoking thread resumed -
Method Summary
Methods declared in interface Mirror
toString, virtualMachine
Modifier and TypeMethodDescriptiontoString()
Returns a String describing this mirrorGets the VirtualMachine to which this Mirror belongs.Methods declared in interface ObjectReference
disableCollection, enableCollection, entryCount, equals, getValue, getValues, hashCode, invokeMethod, isCollected, owningThread, referenceType, referringObjects, setValue, uniqueID, waitingThreads
Modifier and TypeMethodDescriptionvoid
Prevents garbage collection for this object.void
Permits garbage collection for this object.int
Returns the number of times this object's monitor has been entered by the current owning thread if the owning thread is platform thread; Returns 0 if not owned by a platform thread.boolean
Compares the specified Object with this ObjectReference for equality.Gets the value of a given instance or static field in this object.Gets the value of multiple instance and/or static fields in this object.int
hashCode()
Returns the hash code value for this ObjectReference.invokeMethod
(ThreadReference thread, Method method, List<? extends Value> arguments, int options) Invokes the specifiedMethod
on this object in the target VM.boolean
Determines if this object has been garbage collected in the target VM.Returns aThreadReference
for the platform thread, if any, which currently owns this object's monitor.Gets theReferenceType
that mirrors the type of this object.referringObjects
(long maxReferrers) Returns objects that directly reference this object.void
Sets the value of a given instance or static field in this object.long
uniqueID()
Returns a unique identifier for this ObjectReference.Returns a List containing aThreadReference
for each platform thread currently waiting for this object's monitor.
-
Method Details
-
reflectedType
ReferenceType reflectedType()Returns theReferenceType
corresponding to this class object. The returned type can be used to obtain detailed information about the class.- Returns:
- the
ReferenceType
reflected by this class object.
-