public static enum Transform3.Type extends Enum<Transform3.Type>
| Enum Constant and Description |
|---|
ANY |
NULL |
ROT_ORIG |
ROT_TRANS |
ROT_TRANS_AXIAL_SCALE |
ROT_TRANS_SCALE |
ROT_TRANS_SCALE_PERSP |
| Modifier and Type | Field and Description |
|---|---|
int |
i
integer value
|
String |
s
String value
|
| Modifier and Type | Method and Description |
|---|---|
static Transform3.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Transform3.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Transform3.Type NULL
public static final Transform3.Type ROT_ORIG
public static final Transform3.Type ROT_TRANS
public static final Transform3.Type ROT_TRANS_SCALE
public static final Transform3.Type ROT_TRANS_AXIAL_SCALE
public static final Transform3.Type ROT_TRANS_SCALE_PERSP
public static final Transform3.Type ANY
public int i
public String s
public static Transform3.Type[] values()
for (Transform3.Type c : Transform3.Type.values()) System.out.println(c);
public static Transform3.Type 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 © 1994–2024 Peter Murray-Rust. All rights reserved.