- All Implemented Interfaces:
Serializable
,Comparable<DirectMethodHandleDesc.Kind>
,Constable
- Enclosing interface:
- DirectMethodHandleDesc
public static enum DirectMethodHandleDesc.Kind extends Enum<DirectMethodHandleDesc.Kind>
Kinds of method handles that can be described with DirectMethodHandleDesc.
- Since:
- 12
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description CONSTRUCTOR
A method handle for a constructorGETTER
A method handle for a read accessor for an instance fieldINTERFACE_SPECIAL
A method handle for an interface method invoked as withinvokespecial
INTERFACE_STATIC
A method handle for a method invoked as withinvokestatic
INTERFACE_VIRTUAL
A method handle for a method invoked as withinvokeinterface
SETTER
A method handle for a write accessor for an instance fieldSPECIAL
A method handle for a method invoked as withinvokespecial
STATIC
A method handle for a method invoked as withinvokestatic
STATIC_GETTER
A method handle for a read accessor for a static fieldSTATIC_SETTER
A method handle for a write accessor for a static fieldVIRTUAL
A method handle for a method invoked as withinvokevirtual
-
Field Summary
Fields Modifier and Type Field Description boolean
isInterface
Is this an interfaceint
refKind
The correspondingrefKind
value for this kind of method handle, as defined byMethodHandleInfo
-
Method Summary
Modifier and Type Method Description static 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
valueOf(String name)
Returns the enum constant of this type with the specified name.static DirectMethodHandleDesc.Kind[]
values()
Returns an array containing the constants of this enum type, 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 type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type 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
-