public static enum ModelBuilder.FaceRotation extends java.lang.Enum<ModelBuilder.FaceRotation>
| Enum Constant and Description |
|---|
CLOCKWISE_90 |
COUNTERCLOCKWISE_90 |
UPSIDE_DOWN |
ZERO |
| Modifier and Type | Field and Description |
|---|---|
(package private) int |
rotation |
| Modifier and Type | Method and Description |
|---|---|
static ModelBuilder.FaceRotation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ModelBuilder.FaceRotation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModelBuilder.FaceRotation ZERO
public static final ModelBuilder.FaceRotation CLOCKWISE_90
public static final ModelBuilder.FaceRotation UPSIDE_DOWN
public static final ModelBuilder.FaceRotation COUNTERCLOCKWISE_90
public static ModelBuilder.FaceRotation[] values()
for (ModelBuilder.FaceRotation c : ModelBuilder.FaceRotation.values()) System.out.println(c);
public static ModelBuilder.FaceRotation 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