public static enum JsonParser.EventType extends Enum<JsonParser.EventType>
| Enum Constant and Description |
|---|
booleanValue |
colon |
comma |
endArray |
endDocument |
endObject |
nullValue |
number |
startArray |
startDocument |
startObject |
string |
unknown |
| Modifier and Type | Method and Description |
|---|---|
static JsonParser.EventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JsonParser.EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JsonParser.EventType booleanValue
public static final JsonParser.EventType colon
public static final JsonParser.EventType comma
public static final JsonParser.EventType endArray
public static final JsonParser.EventType endDocument
public static final JsonParser.EventType endObject
public static final JsonParser.EventType nullValue
public static final JsonParser.EventType number
public static final JsonParser.EventType startArray
public static final JsonParser.EventType startDocument
public static final JsonParser.EventType startObject
public static final JsonParser.EventType string
public static final JsonParser.EventType unknown
public static JsonParser.EventType[] values()
for (JsonParser.EventType c : JsonParser.EventType.values()) System.out.println(c);
public static JsonParser.EventType 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 © 2015 Revolution Systems Inc.. All rights reserved.