Enum Constant and Description |
---|
ANNOTATION |
CLASS |
ENUM |
INTERFACE |
Modifier and Type | Method and Description |
---|---|
JavaElementKind |
getElementKind() |
static ClassKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ClassKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClassKind CLASS
public static final ClassKind INTERFACE
public static final ClassKind ENUM
public static final ClassKind ANNOTATION
public static ClassKind[] values()
for (ClassKind c : ClassKind.values()) System.out.println(c);
public static ClassKind valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic JavaElementKind getElementKind()