public static enum keywordChecker.keywordType extends Enum<keywordChecker.keywordType>
Enum Constant and Description |
---|
non_reserved_keyword |
not_a_keyword |
reserved_keyword |
Modifier and Type | Method and Description |
---|---|
static keywordChecker.keywordType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static keywordChecker.keywordType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final keywordChecker.keywordType reserved_keyword
public static final keywordChecker.keywordType non_reserved_keyword
public static final keywordChecker.keywordType not_a_keyword
public static keywordChecker.keywordType[] values()
for (keywordChecker.keywordType c : keywordChecker.keywordType.values()) System.out.println(c);
public static keywordChecker.keywordType 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