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 SummaryFields declared in interface ObjectReferenceINVOKE_NONVIRTUAL, INVOKE_SINGLE_THREADED
- 
Method SummaryModifier and TypeMethodDescriptionReturns theClassLoaderReferenceobject for this module.name()Returns the module name.Methods declared in interface MirrortoString, virtualMachineMethods declared in interface ObjectReferencedisableCollection, enableCollection, entryCount, equals, getValue, getValues, hashCode, invokeMethod, isCollected, owningThread, referenceType, referringObjects, setValue, uniqueID, waitingThreads
- 
Method Details- 
nameString name()Returns the module name. This method returnsnullif this module is an unnamed module.- Returns:
- the name of this module.
 
- 
classLoaderClassLoaderReference classLoader()Returns theClassLoaderReferenceobject for this module.- Returns:
- the ClassLoaderReferenceobject for this module.
 
 
-