public static enum Result.Type extends Enum<Result.Type>
Enum Constant and Description |
---|
ARRAY |
BARRAY |
BOOLEAN |
BOOLEANS |
BYTE |
BYTES |
CHAR |
CHARS |
DOUBLE |
DOUBLES |
FLOAT |
FLOATS |
HASHSET |
INT |
INTS |
JOBJECT |
LIST |
LONG |
LONGS |
MAP |
NULL |
NUMBER |
OBJECT |
SHORT |
SHORTS |
SKIP |
STRING |
Modifier and Type | Method and Description |
---|---|
static Result.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Result.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Result.Type CHAR
public static final Result.Type CHARS
public static final Result.Type BYTE
public static final Result.Type BYTES
public static final Result.Type BOOLEAN
public static final Result.Type BOOLEANS
public static final Result.Type SHORT
public static final Result.Type SHORTS
public static final Result.Type INT
public static final Result.Type INTS
public static final Result.Type LONG
public static final Result.Type LONGS
public static final Result.Type FLOAT
public static final Result.Type FLOATS
public static final Result.Type DOUBLE
public static final Result.Type DOUBLES
public static final Result.Type STRING
public static final Result.Type OBJECT
public static final Result.Type MAP
public static final Result.Type ARRAY
public static final Result.Type LIST
public static final Result.Type HASHSET
public static final Result.Type NULL
public static final Result.Type NUMBER
public static final Result.Type SKIP
public static final Result.Type JOBJECT
public static final Result.Type BARRAY
public static Result.Type[] values()
for (Result.Type c : Result.Type.values()) System.out.println(c);
public static Result.Type 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 © 2016. All rights reserved.