public static enum Scanner.TokenType extends Enum<Scanner.TokenType>
ExpressionEvaluator
scanner.Enum Constant and Description |
---|
C_COMMENT |
CHARACTER_LITERAL |
END_OF_IGNORABLES |
FLOATING_POINT_LITERAL |
IDENTIFIER |
INTEGER_LITERAL |
INVALID_CHARACTER |
KEYWORD |
OPERATOR |
SPACE |
STRING_LITERAL |
Modifier and Type | Method and Description |
---|---|
static Scanner.TokenType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Scanner.TokenType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Scanner.TokenType SPACE
public static final Scanner.TokenType C_COMMENT
public static final Scanner.TokenType END_OF_IGNORABLES
public static final Scanner.TokenType KEYWORD
public static final Scanner.TokenType IDENTIFIER
public static final Scanner.TokenType OPERATOR
public static final Scanner.TokenType CHARACTER_LITERAL
public static final Scanner.TokenType STRING_LITERAL
public static final Scanner.TokenType INTEGER_LITERAL
public static final Scanner.TokenType FLOATING_POINT_LITERAL
public static final Scanner.TokenType INVALID_CHARACTER
public static Scanner.TokenType[] values()
for (Scanner.TokenType c : Scanner.TokenType.values()) System.out.println(c);
public static Scanner.TokenType 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 nullCopyright © 2018 Arno Unkrig. All rights reserved.