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
-
kUnknown
-
kInteger
-
kIdentifier
Identifier. -
kLeftBracket
Left square bracket. -
kRightBracket
Right square bracket. -
kLeftBrace
Left curly brace. -
kRightBrace
Right curly brace. -
kColon
-
kSemicolon
Semicolon. -
kComma
-
kEquals
-
kEndOfInput
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
-