protected static enum Equation.TokenType extends java.lang.Enum<Equation.TokenType>
Enum Constant and Description |
---|
FLOAT |
FLOAT_EXP |
INTEGER |
UNKNOWN |
WORD |
Modifier and Type | Method and Description |
---|---|
static Equation.TokenType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Equation.TokenType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Equation.TokenType WORD
public static final Equation.TokenType INTEGER
public static final Equation.TokenType FLOAT
public static final Equation.TokenType FLOAT_EXP
public static final Equation.TokenType UNKNOWN
public static Equation.TokenType[] values()
for (Equation.TokenType c : Equation.TokenType.values()) System.out.println(c);
public static Equation.TokenType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null