public enum EKeywordType extends Enum<EKeywordType>
Enum Constant and Description |
---|
NON_RESERVED_KEYWORD |
NOT_A_KEYWORD |
RESERVED_WORD |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static EKeywordType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EKeywordType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EKeywordType UNKNOWN
public static final EKeywordType NOT_A_KEYWORD
public static final EKeywordType RESERVED_WORD
public static final EKeywordType NON_RESERVED_KEYWORD
public static EKeywordType[] values()
for (EKeywordType c : EKeywordType.values()) System.out.println(c);
public static EKeywordType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null