public static enum CustomAttribute.AttributeType extends java.lang.Enum<CustomAttribute.AttributeType>
| Enum Constant and Description |
|---|
BOOLEAN_TYPE |
COLOR_DRAWABLE_TYPE |
COLOR_TYPE |
DIMENSION_TYPE |
FLOAT_TYPE |
INT_TYPE |
REFERENCE_TYPE |
STRING_TYPE |
| Modifier and Type | Method and Description |
|---|---|
static CustomAttribute.AttributeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CustomAttribute.AttributeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomAttribute.AttributeType INT_TYPE
public static final CustomAttribute.AttributeType FLOAT_TYPE
public static final CustomAttribute.AttributeType COLOR_TYPE
public static final CustomAttribute.AttributeType COLOR_DRAWABLE_TYPE
public static final CustomAttribute.AttributeType STRING_TYPE
public static final CustomAttribute.AttributeType BOOLEAN_TYPE
public static final CustomAttribute.AttributeType DIMENSION_TYPE
public static final CustomAttribute.AttributeType REFERENCE_TYPE
public static CustomAttribute.AttributeType[] values()
for (CustomAttribute.AttributeType c : CustomAttribute.AttributeType.values()) System.out.println(c);
public static CustomAttribute.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 null