public static enum CustomAttribute.CustomAttributeType extends java.lang.Enum<CustomAttribute.CustomAttributeType>
Enum Constant and Description |
---|
bool |
date |
datetime |
number |
string |
time |
url |
Modifier and Type | Method and Description |
---|---|
static CustomAttribute.CustomAttributeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CustomAttribute.CustomAttributeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomAttribute.CustomAttributeType string
public static final CustomAttribute.CustomAttributeType number
public static final CustomAttribute.CustomAttributeType bool
public static final CustomAttribute.CustomAttributeType datetime
public static final CustomAttribute.CustomAttributeType date
public static final CustomAttribute.CustomAttributeType time
public static final CustomAttribute.CustomAttributeType url
public static CustomAttribute.CustomAttributeType[] values()
for (CustomAttribute.CustomAttributeType c : CustomAttribute.CustomAttributeType.values()) System.out.println(c);
public static CustomAttribute.CustomAttributeType 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