public static enum RDotTxtEntry.CustomDrawableType extends Enum<RDotTxtEntry.CustomDrawableType>
Enum Constant and Description |
---|
CUSTOM |
GRAYSCALE_IMAGE |
NONE |
Modifier and Type | Method and Description |
---|---|
String |
getIdentifier()
Get the string identifier (currently a single character) for the custom drawable type.
|
static RDotTxtEntry.CustomDrawableType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RDotTxtEntry.CustomDrawableType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RDotTxtEntry.CustomDrawableType NONE
public static final RDotTxtEntry.CustomDrawableType CUSTOM
public static final RDotTxtEntry.CustomDrawableType GRAYSCALE_IMAGE
public static RDotTxtEntry.CustomDrawableType[] values()
for (RDotTxtEntry.CustomDrawableType c : RDotTxtEntry.CustomDrawableType.values()) System.out.println(c);
public static RDotTxtEntry.CustomDrawableType 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 nullpublic String getIdentifier()