public enum DeserializationType extends java.lang.Enum<DeserializationType>
Enum Constant and Description |
---|
DEPRECATED |
JACKSON_JSON |
JSONP_JSON |
STRING |
Modifier and Type | Method and Description |
---|---|
static DeserializationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DeserializationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeserializationType DEPRECATED
public static final DeserializationType JSONP_JSON
public static final DeserializationType JACKSON_JSON
public static final DeserializationType STRING
public static DeserializationType[] values()
for (DeserializationType c : DeserializationType.values()) System.out.println(c);
public static DeserializationType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null