public enum PropertyType extends java.lang.Enum<PropertyType>
| Enum Constant and Description |
|---|
BOOLEAN
boolean
|
DATE_TIME
date Time
|
DATE_TIME_COLLECTION
date Time Collection
|
DOUBLE
double
|
DOUBLE_COLLECTION
double Collection
|
INT64
int64
|
INT64_COLLECTION
int64Collection
|
STRING
string
|
STRING_COLLECTION
string Collection
|
UNEXPECTED_VALUE
For PropertyType values that were not expected from the service
|
UNKNOWN_FUTURE_VALUE
unknown Future Value
|
| Modifier and Type | Method and Description |
|---|---|
static PropertyType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PropertyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyType STRING
public static final PropertyType INT64
public static final PropertyType DOUBLE
public static final PropertyType DATE_TIME
public static final PropertyType BOOLEAN
public static final PropertyType STRING_COLLECTION
public static final PropertyType INT64_COLLECTION
public static final PropertyType DOUBLE_COLLECTION
public static final PropertyType DATE_TIME_COLLECTION
public static final PropertyType UNKNOWN_FUTURE_VALUE
public static final PropertyType UNEXPECTED_VALUE
public static PropertyType[] values()
for (PropertyType c : PropertyType.values()) System.out.println(c);
public static PropertyType 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