public static enum Value.Type extends java.lang.Enum<Value.Type>
| Modifier and Type | Method and Description |
|---|---|
abstract java.lang.Object |
createFromParcel(android.os.Parcel in) |
static Value.Type |
of(java.lang.Object o) |
static Value.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Value.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
abstract void |
writeToParcel(android.os.Parcel dest,
java.lang.Object value) |
public static final Value.Type NULL
public static final Value.Type STRING
public static final Value.Type KEYWORD
public static final Value.Type LONG
public static final Value.Type MAP
public static Value.Type[] values()
for (Value.Type c : Value.Type.values()) System.out.println(c);
public static Value.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 nullpublic static Value.Type of(java.lang.Object o)
public abstract java.lang.Object createFromParcel(android.os.Parcel in)
public abstract void writeToParcel(android.os.Parcel dest,
java.lang.Object value)