public static enum AttributeLexer.State extends Enum<AttributeLexer.State>
| Enum Constant and Description |
|---|
ARRAY |
EXPRESSION |
KEY |
KEY_CHAR |
OBJECT |
STRING |
VALUE |
| Modifier and Type | Method and Description |
|---|---|
static AttributeLexer.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AttributeLexer.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributeLexer.State KEY
public static final AttributeLexer.State KEY_CHAR
public static final AttributeLexer.State VALUE
public static final AttributeLexer.State EXPRESSION
public static final AttributeLexer.State ARRAY
public static final AttributeLexer.State STRING
public static final AttributeLexer.State OBJECT
public static AttributeLexer.State[] values()
for (AttributeLexer.State c : AttributeLexer.State.values()) System.out.println(c);
public static AttributeLexer.State 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 © 2016. All rights reserved.