public enum ModelEvent extends Enum<ModelEvent>
Enum Constant and Description |
---|
BOOLEAN
Parsing cursor points to DMR
boolean . |
BYTES
Parsing cursor points to DMR
bytes . |
EXPRESSION
Parsing cursor points to DMR
expression . |
LIST_END
Parsing cursor points to DMR
list end token. |
LIST_START
Parsing cursor points to DMR
list start token. |
NUMBER
Parsing cursor points to DMR
number . |
OBJECT_END
Parsing cursor points to DMR
object end token. |
OBJECT_START
Parsing cursor points to DMR
object start token. |
PROPERTY_END
Parsing cursor points to DMR
property end token. |
PROPERTY_START
Parsing cursor points to DMR
property start token. |
STRING
Parsing cursor points to DMR
string . |
TYPE
Parsing cursor points to DMR
type . |
UNDEFINED
Parsing cursor points to DMR
undefined token. |
Modifier and Type | Method and Description |
---|---|
static ModelEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModelEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModelEvent BOOLEAN
boolean
.public static final ModelEvent BYTES
bytes
.public static final ModelEvent EXPRESSION
expression
.public static final ModelEvent LIST_END
list end
token.public static final ModelEvent LIST_START
list start
token.public static final ModelEvent NUMBER
number
.public static final ModelEvent OBJECT_START
object start
token.public static final ModelEvent OBJECT_END
object end
token.public static final ModelEvent PROPERTY_END
property end
token.public static final ModelEvent PROPERTY_START
property start
token.public static final ModelEvent STRING
string
.public static final ModelEvent TYPE
type
.public static final ModelEvent UNDEFINED
undefined
token.public static ModelEvent[] values()
for (ModelEvent c : ModelEvent.values()) System.out.println(c);
public static ModelEvent 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 JBoss, a division of Red Hat, Inc.