public enum ReadableType extends java.lang.Enum<ReadableType>
ReadableArray
or
ReadableMap
.Enum Constant and Description |
---|
Array |
Boolean |
Map |
Null |
Number |
String |
Modifier and Type | Method and Description |
---|---|
static ReadableType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReadableType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReadableType Null
public static final ReadableType Boolean
public static final ReadableType Number
public static final ReadableType String
public static final ReadableType Map
public static final ReadableType Array
public static ReadableType[] values()
for (ReadableType c : ReadableType.values()) System.out.println(c);
public static ReadableType 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