maspack.geometry
Enum BVBoxNodeTester.BoxTypes

java.lang.Object
  extended by java.lang.Enum<BVBoxNodeTester.BoxTypes>
      extended by maspack.geometry.BVBoxNodeTester.BoxTypes
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<BVBoxNodeTester.BoxTypes>
Enclosing class:
BVBoxNodeTester

public static enum BVBoxNodeTester.BoxTypes
extends java.lang.Enum<BVBoxNodeTester.BoxTypes>

Decsribes the type expected for the first and second bounding box.


Enum Constant Summary
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
 
Method Summary
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.
 
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

AABBtoAABB

public static final BVBoxNodeTester.BoxTypes AABBtoAABB
The first and second boxes should both be AABBs.


AABBtoOBB

public static final BVBoxNodeTester.BoxTypes AABBtoOBB
The first box should be an AABB and the second should be an OBB.


OBBtoAABB

public static final BVBoxNodeTester.BoxTypes OBBtoAABB
The first box should be an OBB and the second should be an AABB.


OBBtoOBB

public static final BVBoxNodeTester.BoxTypes OBBtoOBB
The first and second boxes should both be OBBs.


Uknown

public static final BVBoxNodeTester.BoxTypes Uknown
Unknown box types

Method Detail

values

public static BVBoxNodeTester.BoxTypes[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (BVBoxNodeTester.BoxTypes c : BVBoxNodeTester.BoxTypes.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static BVBoxNodeTester.BoxTypes valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null