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