public enum ReaderEventType extends Enum<ReaderEventType>
Enum Constant and Description |
---|
ANONYMOUS_OBJECT_START |
ARRAY_END |
ARRAY_START |
FIELD |
OBJECT_END |
OBJECT_START |
PRIMITIVE |
TERMINATE |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static ReaderEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReaderEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReaderEventType OBJECT_START
public static final ReaderEventType OBJECT_END
public static final ReaderEventType ARRAY_START
public static final ReaderEventType ARRAY_END
public static final ReaderEventType FIELD
public static final ReaderEventType TERMINATE
public static final ReaderEventType ANONYMOUS_OBJECT_START
public static final ReaderEventType PRIMITIVE
public static ReaderEventType[] values()
for (ReaderEventType c : ReaderEventType.values()) System.out.println(c);
public static ReaderEventType 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 nullpublic String toString()
toString
in class Enum<ReaderEventType>
Copyright © 2017 WSO2. All rights reserved.