public static enum JSONReaderAsync.EventType extends Enum<JSONReaderAsync.EventType>
| Enum Constant and Description |
|---|
BOOLEAN |
END_ARRAY |
END_OBJECT |
NULL |
NUMBER |
START_ARRAY |
START_ATTRIBUTE |
START_OBJECT |
STRING |
| Modifier and Type | Method and Description |
|---|---|
static JSONReaderAsync.EventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JSONReaderAsync.EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JSONReaderAsync.EventType START_OBJECT
public static final JSONReaderAsync.EventType START_ATTRIBUTE
public static final JSONReaderAsync.EventType END_OBJECT
public static final JSONReaderAsync.EventType START_ARRAY
public static final JSONReaderAsync.EventType END_ARRAY
public static final JSONReaderAsync.EventType NULL
public static final JSONReaderAsync.EventType NUMBER
public static final JSONReaderAsync.EventType BOOLEAN
public static final JSONReaderAsync.EventType STRING
public static JSONReaderAsync.EventType[] values()
for (JSONReaderAsync.EventType c : JSONReaderAsync.EventType.values()) System.out.println(c);
public static JSONReaderAsync.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 © 2019. All rights reserved.