public static enum AttributeValue.Type extends Enum<AttributeValue.Type>
AttributeValue.| Enum Constant and Description |
|---|
BOOLEAN |
BOOLEAN_ARRAY |
DOUBLE |
DOUBLE_ARRAY |
LONG |
LONG_ARRAY |
STRING |
STRING_ARRAY |
| Modifier and Type | Method and Description |
|---|---|
static AttributeValue.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AttributeValue.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributeValue.Type STRING
public static final AttributeValue.Type BOOLEAN
public static final AttributeValue.Type LONG
public static final AttributeValue.Type DOUBLE
public static final AttributeValue.Type STRING_ARRAY
public static final AttributeValue.Type BOOLEAN_ARRAY
public static final AttributeValue.Type LONG_ARRAY
public static final AttributeValue.Type DOUBLE_ARRAY
public static AttributeValue.Type[] values()
for (AttributeValue.Type c : AttributeValue.Type.values()) System.out.println(c);
public static AttributeValue.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 null