public static enum BVBoxNodeTester.BoxTypes extends java.lang.Enum<BVBoxNodeTester.BoxTypes>
Enum Constant and Description |
---|
AABBtoAABB
The first and second boxes should both be AABBs.
|
AABBtoOBB
The first box should be an AABB and the second should be an OBB.
|
OBBtoAABB
The first box should be an OBB and the second should be an AABB.
|
OBBtoOBB
The first and second boxes should both be OBBs.
|
Uknown
Unknown box types
|
Modifier and Type | Method and Description |
---|---|
static BVBoxNodeTester.BoxTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BVBoxNodeTester.BoxTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BVBoxNodeTester.BoxTypes AABBtoAABB
public static final BVBoxNodeTester.BoxTypes AABBtoOBB
public static final BVBoxNodeTester.BoxTypes OBBtoAABB
public static final BVBoxNodeTester.BoxTypes OBBtoOBB
public static final BVBoxNodeTester.BoxTypes Uknown
public static BVBoxNodeTester.BoxTypes[] values()
for (BVBoxNodeTester.BoxTypes c : BVBoxNodeTester.BoxTypes.values()) System.out.println(c);
public static BVBoxNodeTester.BoxTypes 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