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