|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<DSapSpace.AXES>
org.ode4j.ode.DSapSpace.AXES
public static enum DSapSpace.AXES
Order XZY or ZXY usually works best, if your Y is up.
Enum Constant Summary | |
---|---|
XYZ
0,1,2 -> 100100 -> 36 |
|
XZY
0,2,1 -> 11000 -> 24 |
|
YXZ
1,0,2 -> 100001 -> 33 |
|
YZX
1,2,0 -> 1001 -> 9 |
|
ZXY
2,0,1 -> 10010 -> 18 |
|
ZYX
2,1,0 -> 110 -> 6 |
Method Summary | |
---|---|
int |
getCode()
|
static DSapSpace.AXES |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static DSapSpace.AXES[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final DSapSpace.AXES XYZ
public static final DSapSpace.AXES XZY
public static final DSapSpace.AXES YXZ
public static final DSapSpace.AXES YZX
public static final DSapSpace.AXES ZXY
public static final DSapSpace.AXES ZYX
Method Detail |
---|
public static DSapSpace.AXES[] values()
for (DSapSpace.AXES c : DSapSpace.AXES.values()) System.out.println(c);
public static DSapSpace.AXES 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 name
java.lang.NullPointerException
- if the argument is nullpublic int getCode()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |