Enum Class TokenKind
- All Implemented Interfaces:
Serializable, Comparable<TokenKind>, Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionColon.Comma.End of input.Equals.Identifier.Integer.Left curly brace.Left square bracket.Right curly brace.Right square bracket.Semicolon.Unknown. -
Method Summary
-
Enum Constant Details
-
UNKNOWN
-
INTEGER
-
IDENTIFIER
Identifier. -
LEFT_BRACKET
Left square bracket. -
RIGHT_BRACKET
Right square bracket. -
LEFT_BRACE
Left curly brace. -
RIGHT_BRACE
Right curly brace. -
COLON
-
SEMICOLON
-
COMMA
-
EQUALS
-
END_OF_INPUT
End of input.
-
-
Method Details
-
values
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
toString
-