public enum JCGLFaceSelection extends Enum<JCGLFaceSelection>
| Enum Constant and Description |
|---|
FACE_BACK
Select back faces;
GL_BACK |
FACE_FRONT
Select front faces;
GL_FRONT |
FACE_FRONT_AND_BACK
Select front and back faces;
GL_FRONT_AND_BACK |
| Modifier and Type | Method and Description |
|---|---|
static JCGLFaceSelection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JCGLFaceSelection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JCGLFaceSelection FACE_BACK
GL_BACKpublic static final JCGLFaceSelection FACE_FRONT
GL_FRONTpublic static final JCGLFaceSelection FACE_FRONT_AND_BACK
GL_FRONT_AND_BACKpublic static JCGLFaceSelection[] values()
for (JCGLFaceSelection c : JCGLFaceSelection.values()) System.out.println(c);
public static JCGLFaceSelection valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016 <code@io7m.com> http://io7m.com