| Enum Constant and Description |
|---|
ANNOTATION_CLASS |
CLASS |
CLASS_OBJECT |
ENUM_CLASS |
ENUM_ENTRY |
OBJECT |
TRAIT |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isObject() |
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 ENUM_CLASS
public static final ClassKind ENUM_ENTRY
public static final ClassKind ANNOTATION_CLASS
public static final ClassKind CLASS_OBJECT
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 boolean isObject()