public static enum RealmAny.Type extends Enum<RealmAny.Type>
| Enum Constant and Description |
|---|
BINARY |
BOOLEAN |
DATE |
DECIMAL128 |
DOUBLE |
FLOAT |
INTEGER |
NULL |
OBJECT |
OBJECT_ID |
STRING |
UUID |
| Modifier and Type | Method and Description |
|---|---|
static RealmAny.Type |
fromNativeValue(int realmFieldType) |
Class<?> |
getTypedClass() |
static RealmAny.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RealmAny.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RealmAny.Type INTEGER
public static final RealmAny.Type BOOLEAN
public static final RealmAny.Type STRING
public static final RealmAny.Type BINARY
public static final RealmAny.Type DATE
public static final RealmAny.Type FLOAT
public static final RealmAny.Type DOUBLE
public static final RealmAny.Type DECIMAL128
public static final RealmAny.Type OBJECT_ID
public static final RealmAny.Type OBJECT
public static final RealmAny.Type UUID
public static final RealmAny.Type NULL
public static RealmAny.Type[] values()
for (RealmAny.Type c : RealmAny.Type.values()) System.out.println(c);
public static RealmAny.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 nullpublic static RealmAny.Type fromNativeValue(int realmFieldType)
public Class<?> getTypedClass()