Interface ModuleReference
- All Superinterfaces:
Mirror, ObjectReference, Value
A module in the target VM.
Any method on ModuleReference which directly or indirectly takes
ModuleReference as a parameter may throw VMDisconnectedException
if the target VM is disconnected and the VMDisconnectEvent has been or is
available to be read from the EventQueue.
Any method on ModuleReference which directly or indirectly takes
ModuleReference as a parameter may throw VMOutOfMemoryException
if the target VM has run out of memory.
Any method on ModuleReference or which directly or indirectly takes
ModuleReference as a parameter may throw InvalidModuleException
if the mirrored module has been unloaded.
Not all target virtual machines support this class.
Use VirtualMachine.canGetModuleInfo()
to determine if the class is supported.
- Since:
- 9
-
Field Summary
Fields declared in interface ObjectReference
INVOKE_NONVIRTUAL, INVOKE_SINGLE_THREADEDModifier and TypeFieldDescriptionstatic final intPerform non-virtual method invocationstatic final intPerform method invocation with only the invoking thread resumed -
Method Summary
Modifier and TypeMethodDescriptionReturns theClassLoaderReferenceobject for this module.name()Returns the module name.Methods declared in interface Mirror
toString, virtualMachineModifier 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, waitingThreadsModifier and TypeMethodDescriptionvoidPrevents garbage collection for this object.voidPermits garbage collection for this object.intReturns 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.booleanCompares 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.inthashCode()Returns the hash code value for this ObjectReference.invokeMethod(ThreadReference thread, Method method, List<? extends Value> arguments, int options) Invokes the specifiedMethodon this object in the target VM.booleanDetermines if this object has been garbage collected in the target VM.Returns aThreadReferencefor the platform thread, if any, which currently owns this object's monitor.Gets theReferenceTypethat mirrors the type of this object.referringObjects(long maxReferrers) Returns objects that directly reference this object.voidSets the value of a given instance or static field in this object.longuniqueID()Returns a unique identifier for this ObjectReference.Returns a List containing aThreadReferencefor each platform thread currently waiting for this object's monitor.
-
Method Details
-
name
String name()Returns the module name. This method returnsnullif this module is an unnamed module.- Returns:
- the name of this module.
-
classLoader
ClassLoaderReference classLoader()Returns theClassLoaderReferenceobject for this module.- Returns:
- the
ClassLoaderReferenceobject for this module.
-