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