public static enum Renderer.FaceStyle extends java.lang.Enum<Renderer.FaceStyle>
| Enum Constant and Description | 
|---|
| BACKDraw the back side | 
| FRONTDraw the front side | 
| FRONT_AND_BACKDraw both sides | 
| NONEDraw 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