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