- All Implemented Interfaces:
Serializable
,Comparable<DirectMethodHandleDesc.Kind>
,Constable
- Enclosing interface:
DirectMethodHandleDesc
Kinds of method handles that can be described with DirectMethodHandleDesc.
- Since:
- 12
-
Nested Class Summary
Nested classes/interfaces declared in class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionA method handle for a constructorA method handle for a read accessor for an instance fieldA method handle for an interface method invoked as withinvokespecial
A method handle for a method invoked as withinvokestatic
A method handle for a method invoked as withinvokeinterface
A method handle for a write accessor for an instance fieldA method handle for a method invoked as withinvokespecial
A method handle for a method invoked as withinvokestatic
A method handle for a read accessor for a static fieldA method handle for a write accessor for a static fieldA method handle for a method invoked as withinvokevirtual
-
Field Summary
Modifier and TypeFieldDescriptionfinal boolean
Is this an interfacefinal int
The correspondingrefKind
value for this kind of method handle, as defined byMethodHandleInfo
-
Method Summary
Modifier and TypeMethodDescriptionstatic DirectMethodHandleDesc.Kind
valueOf
(int refKind) Returns the enumeration member with the givenrefKind
field.static DirectMethodHandleDesc.Kind
valueOf
(int refKind, boolean isInterface) Returns the enumeration member with the given therefKind
andisInterface
arguments.static DirectMethodHandleDesc.Kind
Returns the enum constant of this class with the specified name.static DirectMethodHandleDesc.Kind[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
STATIC
A method handle for a method invoked as withinvokestatic
-
INTERFACE_STATIC
A method handle for a method invoked as withinvokestatic
-
VIRTUAL
A method handle for a method invoked as withinvokevirtual
-
INTERFACE_VIRTUAL
A method handle for a method invoked as withinvokeinterface
-
SPECIAL
A method handle for a method invoked as withinvokespecial
-
INTERFACE_SPECIAL
A method handle for an interface method invoked as withinvokespecial
-
CONSTRUCTOR
A method handle for a constructor -
GETTER
A method handle for a read accessor for an instance field -
SETTER
A method handle for a write accessor for an instance field -
STATIC_GETTER
A method handle for a read accessor for a static field -
STATIC_SETTER
A method handle for a write accessor for a static field
-
-
Field Details
-
refKind
public final int refKindThe correspondingrefKind
value for this kind of method handle, as defined byMethodHandleInfo
-
isInterface
public final boolean isInterfaceIs this an interface
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
valueOf
Returns the enumeration member with the givenrefKind
field. Behaves as ifvalueOf(refKind, false)
. As a special case, ifrefKind
isREF_invokeInterface
(9) then theisInterface
field will be true.- Parameters:
refKind
- refKind of desired member- Returns:
- the matching enumeration member
- Throws:
IllegalArgumentException
- if there is no such member
-
valueOf
Returns the enumeration member with the given therefKind
andisInterface
arguments. For most values ofrefKind
there is an exact match regardless of the value ofisInterface
. These are:REF_invokeVirtual
which matches toVIRTUAL
REF_invokeInterface
which matches toINTERFACE_VIRTUAL
REF_newInvokeSpecial
which matches toCONSTRUCTOR
REF_getField
which matches toGETTER
REF_putField
which matches toSETTER
REF_getStatic
which matches toSTATIC_GETTER
REF_putStatic
which matches toSTATIC_SETTER
isInterface
:REF_invokeStatic
which matches toSTATIC
orINTERFACE_STATIC
REF_invokeSpecial
which matches toSPECIAL
orINTERFACE_SPECIAL
- Parameters:
refKind
- refKind of desired memberisInterface
- whether desired member is for interface methods- Returns:
- the matching enumeration member
- Throws:
IllegalArgumentException
- if there is no such member
-