public static enum JsonUtils.Types extends Enum<JsonUtils.Types>
| Enum Constant and Description |
|---|
ARRAY_BOOLEAN
Array of Boolean.
|
ARRAY_BYTE
Array of Bytes.
|
ARRAY_CHAR
Array of Chars.
|
ARRAY_DOUBLE
Array of Doubles.
|
ARRAY_FLOAT
Array of Floats.
|
ARRAY_INT
Array of Integers.
|
ARRAY_LONG
Array of Longs.
|
ARRAY_OBJECT
Array of Java Objects (beans).
|
ARRAY_SHORT
Array of Shorts.
|
ARRAY_STRING
Array of Strings.
|
BOOLEAN
Boolean.
|
BYTE
Byte.
|
CHAR
Char.
|
CLASS
java.lang.Class
|
COLLECTION
Collection.
|
DOUBLE
Double.
|
ENUM
Enum.
|
FLOAT
Float.
|
INT
Integer.
|
LONG
Long.
|
MAP
Map.
|
NULL
Corresponding to null value.
|
SHORT
Short.
|
STRING
String.
|
| Modifier and Type | Method and Description |
|---|---|
static JsonUtils.Types |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JsonUtils.Types[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JsonUtils.Types BYTE
public static final JsonUtils.Types SHORT
public static final JsonUtils.Types INT
public static final JsonUtils.Types LONG
public static final JsonUtils.Types FLOAT
public static final JsonUtils.Types DOUBLE
public static final JsonUtils.Types BOOLEAN
public static final JsonUtils.Types CHAR
public static final JsonUtils.Types STRING
public static final JsonUtils.Types NULL
public static final JsonUtils.Types ARRAY_BYTE
public static final JsonUtils.Types ARRAY_SHORT
public static final JsonUtils.Types ARRAY_INT
public static final JsonUtils.Types ARRAY_LONG
public static final JsonUtils.Types ARRAY_FLOAT
public static final JsonUtils.Types ARRAY_DOUBLE
public static final JsonUtils.Types ARRAY_BOOLEAN
public static final JsonUtils.Types ARRAY_CHAR
public static final JsonUtils.Types ARRAY_STRING
public static final JsonUtils.Types ARRAY_OBJECT
public static final JsonUtils.Types COLLECTION
public static final JsonUtils.Types MAP
public static final JsonUtils.Types ENUM
public static final JsonUtils.Types CLASS
public static JsonUtils.Types[] values()
for (JsonUtils.Types c : JsonUtils.Types.values()) System.out.println(c);
public static JsonUtils.Types 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 © 2012–2016 Codenvy, S.A.. All rights reserved.