|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Face>
com.neovisionaries.android.opengl.Face
public enum Face
Face.
Enum Constant Summary | |
---|---|
BACK
GL_BACK. |
|
FRONT
GL_FRONT. |
|
FRONT_AND_BACK
GL_FRONT_AND_BACK. |
Method Summary | |
---|---|
int |
getFace()
Get the integer representing this face. |
static Face |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Face[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Face FRONT
public static final Face BACK
public static final Face FRONT_AND_BACK
Method Detail |
---|
public static Face[] values()
for (Face c : Face.values()) System.out.println(c);
public static Face valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic int getFace()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |