public enum ObjectValueType extends Enum<ObjectValueType>
| Enum Constant and Description |
|---|
ABSTRACT_DATETIME
ABSTRACT_DATETIME
|
BOOLEAN
BOOLEAN
|
CONTACT
CONTACT
|
DATE
DATE
|
DATETIME
DATETIME
|
DURATION
DURATION
|
NUMBER
NUMBER
|
PREDECESSOR_LIST
PREDECESSOR_LIST
|
STRING
STRING
|
| Modifier and Type | Method and Description |
|---|---|
static ObjectValueType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ObjectValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectValueType DATE
public static final ObjectValueType DATETIME
public static final ObjectValueType ABSTRACT_DATETIME
public static final ObjectValueType CONTACT
public static final ObjectValueType DURATION
public static final ObjectValueType PREDECESSOR_LIST
public static final ObjectValueType NUMBER
public static final ObjectValueType BOOLEAN
public static final ObjectValueType STRING
public static ObjectValueType[] values()
for (ObjectValueType c : ObjectValueType.values()) System.out.println(c);
public static ObjectValueType 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 nullCopyright © 2014–2017 Smartsheet. All rights reserved.