public enum AttributeType extends java.lang.Enum<AttributeType>
| Enum Constant and Description |
|---|
CHECKBOX |
DATE |
DATETIME |
DYNAMIC_CHOICE_LIST |
FIXED_CHOICE_LIST |
FORMULA |
NUMBER |
PERCENTAGE |
TEXT |
| Modifier and Type | Method and Description |
|---|---|
static AttributeType |
fromString(java.lang.String attrType) |
java.lang.String |
toString() |
static AttributeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AttributeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributeType CHECKBOX
public static final AttributeType DYNAMIC_CHOICE_LIST
public static final AttributeType FIXED_CHOICE_LIST
public static final AttributeType TEXT
public static final AttributeType NUMBER
public static final AttributeType DATE
public static final AttributeType DATETIME
public static final AttributeType FORMULA
public static final AttributeType PERCENTAGE
public static AttributeType[] values()
for (AttributeType c : AttributeType.values()) System.out.println(c);
public static AttributeType 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 AttributeType fromString(java.lang.String attrType)
public java.lang.String toString()
toString in class java.lang.Enum<AttributeType>