public enum ElementType extends java.lang.Enum<ElementType>
| Enum Constant and Description |
|---|
FIELD |
OPERATOR |
PARENTHESIS_LEFT |
PARENTHESIS_RIGHT |
STRING_VALUE |
TEMPORAL_UNIT |
UNKNOWN |
VALUE |
| Modifier and Type | Method and Description |
|---|---|
static ElementType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ElementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ElementType FIELD
public static final ElementType OPERATOR
public static final ElementType VALUE
public static final ElementType STRING_VALUE
public static final ElementType PARENTHESIS_LEFT
public static final ElementType PARENTHESIS_RIGHT
public static final ElementType TEMPORAL_UNIT
public static final ElementType UNKNOWN
public static ElementType[] values()
for (ElementType c : ElementType.values()) System.out.println(c);
public static ElementType 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