| Enum Constant and Description |
|---|
COMMA |
FUNCTION |
FUNCTION_LEFT_PAREN |
FUNCTION_RIGHT_PAREN |
LEFT_PAREN |
NONE |
NUMBER |
OPERATOR |
RIGHT_PAREN |
VARIABLE |
| Modifier and Type | Method and Description |
|---|---|
static Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Type FUNCTION
public static final Type FUNCTION_LEFT_PAREN
public static final Type FUNCTION_RIGHT_PAREN
public static final Type NUMBER
public static final Type LEFT_PAREN
public static final Type RIGHT_PAREN
public static final Type COMMA
public static final Type OPERATOR
public static final Type VARIABLE
public static final Type NONE
public static Type[] values()
for (Type c : Type.values()) System.out.println(c);
public static Type 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