zombie.core.textures
Enum TextureDraw.Type
java.lang.Object
java.lang.Enum<TextureDraw.Type>
zombie.core.textures.TextureDraw.Type
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<TextureDraw.Type>
- Enclosing class:
- TextureDraw
public static enum TextureDraw.Type
- extends java.lang.Enum<TextureDraw.Type>
|
Method Summary |
static TextureDraw.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static TextureDraw.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
| Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
glDraw
public static final TextureDraw.Type glDraw
glBuffer
public static final TextureDraw.Type glBuffer
glStencilFunc
public static final TextureDraw.Type glStencilFunc
glAlphaFunc
public static final TextureDraw.Type glAlphaFunc
glStencilOp
public static final TextureDraw.Type glStencilOp
glEnable
public static final TextureDraw.Type glEnable
glDisable
public static final TextureDraw.Type glDisable
glColorMask
public static final TextureDraw.Type glColorMask
glStencilMask
public static final TextureDraw.Type glStencilMask
glClear
public static final TextureDraw.Type glClear
glBlendFunc
public static final TextureDraw.Type glBlendFunc
glDoStartFrame
public static final TextureDraw.Type glDoStartFrame
glDoEndFrame
public static final TextureDraw.Type glDoEndFrame
glTexParameteri
public static final TextureDraw.Type glTexParameteri
StartShader
public static final TextureDraw.Type StartShader
values
public static TextureDraw.Type[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (TextureDraw.Type c : TextureDraw.Type.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static TextureDraw.Type valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is null