public enum ModelEvent extends Enum<ModelEvent>
| Enum Constant and Description | 
|---|
| BIG_DECIMALParsing cursor points to DMR  big decimal. | 
| BIG_INTEGERParsing cursor points to DMR  big integer. | 
| BOOLEANParsing cursor points to DMR  boolean. | 
| BYTESParsing cursor points to DMR  bytes. | 
| DOUBLEParsing cursor points to DMR  double. | 
| EXPRESSIONParsing cursor points to DMR  expression. | 
| INTParsing cursor points to DMR  int. | 
| LIST_ENDParsing cursor points to DMR  list endtoken. | 
| LIST_STARTParsing cursor points to DMR  list starttoken. | 
| LONGParsing cursor points to DMR  long. | 
| OBJECT_ENDParsing cursor points to DMR  object endtoken. | 
| OBJECT_STARTParsing cursor points to DMR  object starttoken. | 
| PROPERTY_ENDParsing cursor points to DMR  property endtoken. | 
| PROPERTY_STARTParsing cursor points to DMR  property starttoken. | 
| STRINGParsing cursor points to DMR  string. | 
| TYPEParsing cursor points to DMR  type. | 
| UNDEFINEDParsing cursor points to DMR  undefinedtoken. | 
| 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 © 2018 JBoss by Red Hat. All rights reserved.