Package edu.wpi.first.util.struct.parser
Enum TokenKind
- All Implemented Interfaces:
Serializable
,Comparable<TokenKind>
,Constable
public enum TokenKind extends Enum<TokenKind>
A lexed raw struct schema token.
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description kColon
Colon.kComma
Comma.kEndOfInput
End of input.kEquals
Equals.kIdentifier
Identifier.kInteger
Integer.kLeftBrace
Left curly brace.kLeftBracket
Left square bracket.kRightBrace
Right curly brace.kRightBracket
Right square bracket.kSemicolon
Semicolon.kUnknown
Unknown. -
Method Summary
-
Enum Constant Details
-
kUnknown
Unknown. -
kInteger
Integer. -
kIdentifier
Identifier. -
kLeftBracket
Left square bracket. -
kRightBracket
Right square bracket. -
kLeftBrace
Left curly brace. -
kRightBrace
Right curly brace. -
kColon
Colon. -
kSemicolon
Semicolon. -
kComma
Comma. -
kEquals
Equals. -
kEndOfInput
End of input.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
-