public enum FrontFaceDirection extends java.lang.Enum<FrontFaceDirection> implements GLEnum
Modifier and Type | Method and Description |
---|---|
int |
getValue()
Gets the enum's numerical value.
|
static FrontFaceDirection |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FrontFaceDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FrontFaceDirection CW
public static final FrontFaceDirection CCW
public static FrontFaceDirection[] values()
for (FrontFaceDirection c : FrontFaceDirection.values()) System.out.println(c);
public static FrontFaceDirection 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