public enum ModelEvent extends Enum<ModelEvent>
| Enum Constant and Description |
|---|
BIG_DECIMAL
Parsing cursor points to DMR
big decimal. |
BIG_INTEGER
Parsing cursor points to DMR
big integer. |
BOOLEAN
Parsing cursor points to DMR
boolean. |
BYTES
Parsing cursor points to DMR
bytes. |
DOUBLE
Parsing cursor points to DMR
double. |
EXPRESSION
Parsing cursor points to DMR
expression. |
INT
Parsing cursor points to DMR
int. |
LIST_END
Parsing cursor points to DMR
list end token. |
LIST_START
Parsing cursor points to DMR
list start token. |
LONG
Parsing cursor points to DMR
long. |
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 INT
int.public static final ModelEvent LONG
long.public static final ModelEvent DOUBLE
double.public static final ModelEvent BIG_INTEGER
big integer.public static final ModelEvent BIG_DECIMAL
big decimal.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 © 2017 JBoss by Red Hat. All rights reserved.