public static enum ResponseField.Type extends java.lang.Enum<ResponseField.Type>
| Enum Constant and Description |
|---|
BOOLEAN |
CUSTOM |
CUSTOM_LIST |
DOUBLE |
ENUM |
FRAGMENT |
INLINE_FRAGMENT |
INT |
LONG |
OBJECT |
OBJECT_LIST |
SCALAR_LIST |
STRING |
| Modifier and Type | Method and Description |
|---|---|
static ResponseField.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ResponseField.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResponseField.Type STRING
public static final ResponseField.Type INT
public static final ResponseField.Type LONG
public static final ResponseField.Type DOUBLE
public static final ResponseField.Type BOOLEAN
public static final ResponseField.Type ENUM
public static final ResponseField.Type OBJECT
public static final ResponseField.Type SCALAR_LIST
public static final ResponseField.Type CUSTOM_LIST
public static final ResponseField.Type OBJECT_LIST
public static final ResponseField.Type CUSTOM
public static final ResponseField.Type FRAGMENT
public static final ResponseField.Type INLINE_FRAGMENT
public static ResponseField.Type[] values()
for (ResponseField.Type c : ResponseField.Type.values()) System.out.println(c);
public static ResponseField.Type 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