Interface InterfaceType
- All Superinterfaces:
Accessible, Comparable<ReferenceType>, Mirror, ReferenceType, Type
ReferenceType that applies to true interfaces
in the JLS sense of the definition (not a class, not an array type).
An interface type will never be returned by
ObjectReference.referenceType(), but it may be in the list
of implemented interfaces for a ClassType that is returned
by that method.- Since:
- 1.3
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionGets the currently prepared classes which directly implement this interface.default ValueinvokeMethod(ThreadReference thread, Method method, List<? extends Value> arguments, int options) Invokes the specified staticMethodin the target VM.Gets the currently prepared interfaces which directly extend this interface.Gets the interfaces directly extended by this interface.Methods declared in interface Accessible
isPackagePrivate, isPrivate, isProtected, isPublic, modifiersModifier and TypeMethodDescriptionbooleanDetermines if this object mirrors a package private item.booleanDetermines if this object mirrors a private item.booleanDetermines if this object mirrors a protected item.booleanisPublic()Determines if this object mirrors a public item.intReturns the Java programming language modifiers, encoded in an integer.Methods declared in interface Comparable
compareToModifier and TypeMethodDescriptionintCompares this object with the specified object for order.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 ReferenceType
allFields, allLineLocations, allLineLocations, allMethods, availableStrata, classLoader, classObject, constantPool, constantPoolCount, defaultStratum, equals, failedToInitialize, fieldByName, fields, genericSignature, getValue, getValues, hashCode, instances, isAbstract, isFinal, isInitialized, isPrepared, isStatic, isVerified, locationsOfLine, locationsOfLine, majorVersion, methods, methodsByName, methodsByName, minorVersion, module, name, nestedTypes, sourceDebugExtension, sourceName, sourceNames, sourcePaths, visibleFields, visibleMethodsModifier and TypeMethodDescriptionReturns a list containing eachFielddeclared in this type, and its superclasses, implemented interfaces, and/or superinterfaces.Returns a list containing aLocationobject for each executable source line in this reference type.allLineLocations(String stratum, String sourceName) Returns a list containing aLocationobject for each executable source line in this reference type.Returns a list containing eachMethoddeclared in this type, and its superclasses, implemented interfaces, and/or superinterfaces.Return the available strata for this reference type.Gets the classloader object which loaded the class corresponding to this type.Returns the class object that corresponds to this type in the target VM.byte[]Returns the raw bytes of the constant pool in the format of the constant_pool item of the Class File Format in the Java Virtual Machine Specification.intReturns the number of entries in the constant pool plus one.Returns the default stratum for this reference type.booleanCompares the specified Object with this ReferenceType for equality.booleanDetermines if initialization failed for this class.fieldByName(String fieldName) Finds the visibleFieldwith the given non-ambiguous name.fields()Returns a list containing eachFielddeclared in this type.Gets the generic signature for this type if there is one.inthashCode()Returns the hash code value for this ObjectReference.instances(long maxInstances) Returns instances of this ReferenceType.booleanDetermines if this type was declared abstract.booleanisFinal()Determines if this type was declared final.booleanDetermines if this type has been initialized.booleanDetermines if this type has been prepared.booleanisStatic()Determines if this type was declared static.booleanDetermines if this type has been verified.locationsOfLine(int lineNumber) Returns a List containing allLocationobjects that map to the given line number.locationsOfLine(String stratum, String sourceName, int lineNumber) Returns a List containing allLocationobjects that map to the given line number.intReturns the class major version number, as defined in the class file format of the Java Virtual Machine Specification.methods()Returns a list containing eachMethoddeclared directly in this type.methodsByName(String name) Returns a List containing each visibleMethodthat has the given name.methodsByName(String name, String signature) Returns a List containing each visibleMethodthat has the given name and signature.intReturns the class minor version number, as defined in the class file format of the Java Virtual Machine Specification.default ModuleReferencemodule()Gets the module object which contains the class corresponding to this type.name()Returns the name of thisReferenceTypeobject.Returns a List containingReferenceTypeobjects that are declared within this type and are currently loaded into the Virtual Machine.Get the source debug extension of this type.Gets an identifying name for the source corresponding to the declaration of this type.sourceNames(String stratum) Gets the identifying names for all the source corresponding to the declaration of this type.sourcePaths(String stratum) Gets the paths to the source corresponding to the declaration of this type.Returns a list containing each unhidden and unambiguousFieldin this type.Returns a list containing eachMethoddeclared or inherited by this type.
-
Method Details
-
superinterfaces
List<InterfaceType> superinterfaces()Gets the interfaces directly extended by this interface. The returned list contains only those interfaces this interface has declared to be extended.- Returns:
- a List of
InterfaceTypeobjects each mirroring an interface extended by this interface. If none exist, returns a zero length List. - Throws:
ClassNotPreparedException- if this class not yet been prepared.
-
subinterfaces
List<InterfaceType> subinterfaces()Gets the currently prepared interfaces which directly extend this interface. The returned list contains only those interfaces that declared this interface in their "extends" clause.- Returns:
- a List of
InterfaceTypeobjects each mirroring an interface extending this interface. If none exist, returns a zero length List.
-
implementors
Gets the currently prepared classes which directly implement this interface. The returned list contains only those classes that declared this interface in their "implements" clause.- Returns:
- a List of
ClassTypeobjects each mirroring a class implementing this interface. If none exist, returns a zero length List.
-
invokeMethod
default Value invokeMethod(ThreadReference thread, Method method, List<? extends Value> arguments, int options) throws InvalidTypeException, ClassNotLoadedException, IncompatibleThreadStateException, InvocationException Invokes the specified staticMethodin the target VM. The specified method must be defined in this interface. The method must be a static method but not a static initializer.The method invocation will occur in the specified thread. Method invocation can occur only if the specified thread has been suspended by an event which occurred in that thread. Method invocation is not supported when the target VM has been suspended through
VirtualMachine.suspend()or when the specified thread is suspended throughThreadReference.suspend().The specified method is invoked with the arguments in the specified argument list. The method invocation is synchronous; this method does not return until the invoked method returns in the target VM. If the invoked method throws an exception, this method will throw an
InvocationExceptionwhich contains a mirror to the exception object thrown.Object arguments must be assignment compatible with the argument type (This implies that the argument type must be loaded through the enclosing class's class loader). Primitive arguments must be either assignment compatible with the argument type or must be convertible to the argument type without loss of information. If the method being called accepts a variable number of arguments, then the last argument type is an array of some component type. The argument in the matching position can be omitted, or can be null, an array of the same component type, or an argument of the component type followed by any number of other arguments of the same type. If the argument is omitted, then a 0 length array of the component type is passed. The component type can be a primitive type. Autoboxing is not supported. See Section 5.2 of The Java Language Specification for more information on assignment compatibility.
By default, all threads in the target VM are resumed while the method is being invoked if they were previously suspended by an event or by
VirtualMachine.suspend()orThreadReference.suspend(). This is done to prevent the deadlocks that will occur if any of the threads own resources, such as monitors, that will be needed by the invoked method. Note, however, that this implicit resume acts exactly likeThreadReference.resume(), so if the thread's suspend count is greater than 1, it will remain in a suspended state during the invocation and thus a deadlock could still occur. By default, when the invocation completes, all threads in the target VM are suspended, regardless their state before the invocation. It is possible that breakpoints or other events might occur during the invocation. This can cause deadlocks as described above. It can also cause a deadlock if invokeMethod is called from the client's event handler thread. In this case, this thread will be waiting for the invokeMethod to complete and won't read the EventSet that comes in for the new event. If this new EventSet is SUSPEND_ALL, then a deadlock will occur because no one will resume the EventSet. To avoid this, all EventRequests should be disabled before doing the invokeMethod, or the invokeMethod should not be done from the client's event handler thread.The resumption of other threads during the invocation can be prevented by specifying the
ClassType.INVOKE_SINGLE_THREADEDbit flag in theoptionsargument; however, there is no protection against or recovery from the deadlocks described above, so this option should be used with great caution. Only the specified thread will be resumed (as described for all threads above). Upon completion of a single threaded invoke, the invoking thread will be suspended once again. Note that any threads started during the single threaded invocation will not be suspended when the invocation completes.If the target VM is disconnected during the invoke (for example, through
VirtualMachine.dispose()) the method invocation continues.- API Note:
- Virtual threads
are typically user-mode threads scheduled by the Java runtime rather than
the operating system. As such, there may be more cases with virtual threads
where the
ClassType.INVOKE_SINGLE_THREADEDoption may cause a deadlock. For example, suspending all threads in the target VM may suspend threads that support the timer mechanism for virtual threads, and thus methods such asThread.sleep(long)may deadlock. - Parameters:
thread- the thread in which to invoke.method- theMethodto invoke.arguments- the list ofValuearguments bound to the invoked method. Values from the list are assigned to arguments in the order they appear in the method signature.options- the integer bit flag options.- Returns:
- a
Valuemirror of the invoked method's return value. - Throws:
IllegalArgumentException- if the method is not a member of this interface, if the size of the argument list does not match the number of declared arguments for the method, or if the method is not static or is a static initializer.ClassNotLoadedException- if any argument type has not yet been loaded through the appropriate class loader.IncompatibleThreadStateException- if the specified thread has not been suspended by an event.InvocationException- if the method invocation resulted in an exception in the target VM.InvalidTypeException- If the arguments do not meet this requirement -- Object arguments must be assignment compatible with the argument type. This implies that the argument type must be loaded through the enclosing class' class loader. Primitive arguments must be either assignment compatible with the argument type or must be convertible to the argument type without loss of information. See JLS section 5.2 for more information on assignment compatibility.VMCannotBeModifiedException- if the VirtualMachine is read-only - seeVirtualMachine.canBeModified().- Since:
- 1.8
-