public static enum JsonServiceInvoker.DataType extends Enum<JsonServiceInvoker.DataType>
| Enum Constant and Description |
|---|
ARRAY |
BOOLEAN |
INTEGER |
NUMBER |
OBJECT |
STRING |
| Modifier and Type | Method and Description |
|---|---|
static String |
getName(Class<?> clazz) |
String |
toString() |
static JsonServiceInvoker.DataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JsonServiceInvoker.DataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JsonServiceInvoker.DataType ARRAY
public static final JsonServiceInvoker.DataType OBJECT
public static final JsonServiceInvoker.DataType NUMBER
public static final JsonServiceInvoker.DataType INTEGER
public static final JsonServiceInvoker.DataType BOOLEAN
public static final JsonServiceInvoker.DataType STRING
public static JsonServiceInvoker.DataType[] values()
for (JsonServiceInvoker.DataType c : JsonServiceInvoker.DataType.values()) System.out.println(c);
public static JsonServiceInvoker.DataType 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<JsonServiceInvoker.DataType>Copyright © 2016. All rights reserved.