public static enum Renderer.FaceStyle extends java.lang.Enum<Renderer.FaceStyle>
| Enum Constant and Description |
|---|
BACK
Draw the back side
|
FRONT
Draw the front side
|
FRONT_AND_BACK
Draw both sides
|
NONE
Draw neither side
|
| Modifier and Type | Method and Description |
|---|---|
static Renderer.FaceStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Renderer.FaceStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Renderer.FaceStyle BACK
public static final Renderer.FaceStyle FRONT
public static final Renderer.FaceStyle FRONT_AND_BACK
public static final Renderer.FaceStyle NONE
public static Renderer.FaceStyle[] values()
for (Renderer.FaceStyle c : Renderer.FaceStyle.values()) System.out.println(c);
public static Renderer.FaceStyle 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