- All Implemented Interfaces:
- Serializable,- Comparable<ElementKind>,- Constable
public enum ElementKind extends Enum<ElementKind>
The 
kind of an element.
 Note that it is possible additional element kinds will be added to accommodate new, currently unknown, language structures added to future versions of the Java™ programming language.
- Since:
- 1.6
- See Also:
- Element
- 
Nested Class Summary
- 
Enum Constant SummaryEnum Constants Enum Constant Description ANNOTATION_TYPEAn annotation type.BINDING_VARIABLEAssociated with pattern matching for {@code instanceof}, a preview feature of the Java language.
 A binding variable in a pattern .CLASSA class not described by a more specific kind (likeENUMorRECORD).CONSTRUCTORA constructor.ENUMAn enum type.ENUM_CONSTANTAn enum constant.EXCEPTION_PARAMETERA parameter of an exception handler.FIELDA field not described by a more specific kind (likeENUM_CONSTANT).INSTANCE_INITAn instance initializer.INTERFACEAn interface not described by a more specific kind (likeANNOTATION_TYPE).LOCAL_VARIABLEA local variable.METHODA method.MODULEA module.OTHERAn implementation-reserved element.PACKAGEA package.PARAMETERA parameter of a method or constructor.RECORDAssociated with records, a preview feature of the Java language.
 A record type.RECORD_COMPONENTAssociated with records, a preview feature of the Java language.
 A record component of arecord.RESOURCE_VARIABLEA resource variable.STATIC_INITA static initializer.TYPE_PARAMETERA type parameter.
- 
Method SummaryModifier and Type Method Description booleanisClass()Returnstrueif this is a kind of class: eitherCLASSorENUMorRECORD.booleanisField()Returnstrueif this is a kind of field: eitherFIELDorENUM_CONSTANT.booleanisInterface()Returnstrueif this is a kind of interface: eitherINTERFACEorANNOTATION_TYPE.static ElementKindvalueOf(String name)Returns the enum constant of this type with the specified name.static ElementKind[]values()Returns an array containing the constants of this enum type, in the order they are declared.
- 
Enum Constant Details- 
PACKAGEA package.
- 
ENUMAn enum type.
- 
CLASSA class not described by a more specific kind (likeENUMorRECORD).
- 
ANNOTATION_TYPEAn annotation type.
- 
INTERFACEAn interface not described by a more specific kind (likeANNOTATION_TYPE).
- 
ENUM_CONSTANTAn enum constant.
- 
FIELDA field not described by a more specific kind (likeENUM_CONSTANT).
- 
PARAMETERA parameter of a method or constructor.
- 
LOCAL_VARIABLEA local variable.
- 
EXCEPTION_PARAMETERA parameter of an exception handler.
- 
METHODA method.
- 
CONSTRUCTORA constructor.
- 
STATIC_INITA static initializer.
- 
INSTANCE_INITAn instance initializer.
- 
TYPE_PARAMETERA type parameter.
- 
OTHERAn implementation-reserved element. This is not the element you are looking for.
- 
RESOURCE_VARIABLEA resource variable.- Since:
- 1.7
 
- 
MODULEA module.- Since:
- 9
 
- 
RECORDThis enum constant is associated with records, a preview feature of the Java language. Preview features may be removed in a future release, or upgraded to permanent features of the Java language.
 A record type.- Since:
- 14
 
- 
RECORD_COMPONENTThis enum constant is associated with records, a preview feature of the Java language. Preview features may be removed in a future release, or upgraded to permanent features of the Java language.
 A record component of arecord.- Since:
- 14
 
- 
BINDING_VARIABLEThis enum constant is associated with pattern matching for {@code instanceof}, a preview feature of the Java language. Preview features may be removed in a future release, or upgraded to permanent features of the Java language.
 A binding variable in a pattern .- Since:
- 14
 
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
- 
isClasspublic boolean isClass()Returnstrueif this is a kind of class: eitherCLASSorENUMorRECORD.- Returns:
- trueif this is a kind of class
 
- 
isInterfacepublic boolean isInterface()Returnstrueif this is a kind of interface: eitherINTERFACEorANNOTATION_TYPE.- Returns:
- trueif this is a kind of interface
 
- 
isFieldpublic boolean isField()Returnstrueif this is a kind of field: eitherFIELDorENUM_CONSTANT.- Returns:
- trueif this is a kind of field
 
 
-