com.acarter.scenemonitor.propertydescriptor.definitions
Enum SpatialPropertyPage.E_BoundingVolume

java.lang.Object
  extended by java.lang.Enum<SpatialPropertyPage.E_BoundingVolume>
      extended by com.acarter.scenemonitor.propertydescriptor.definitions.SpatialPropertyPage.E_BoundingVolume
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SpatialPropertyPage.E_BoundingVolume>
Enclosing class:
SpatialPropertyPage

protected static enum SpatialPropertyPage.E_BoundingVolume
extends java.lang.Enum<SpatialPropertyPage.E_BoundingVolume>

Enumerates the permissible bounding volume types.

Author:
Andrew Carter

Enum Constant Summary
BOX
           
CAPSULE
           
NONE
           
ORIENTEDBOX
           
SPHERE
           
 
Method Summary
static SpatialPropertyPage.E_BoundingVolume getConstant(java.lang.String name)
          Returns the enum constant matching the name string.
 java.lang.String getType()
          Returns the integer value of the constant.
 java.lang.String toString()
          Returns the string value of the constant.
static SpatialPropertyPage.E_BoundingVolume valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SpatialPropertyPage.E_BoundingVolume[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NONE

public static final SpatialPropertyPage.E_BoundingVolume NONE

BOX

public static final SpatialPropertyPage.E_BoundingVolume BOX

CAPSULE

public static final SpatialPropertyPage.E_BoundingVolume CAPSULE

SPHERE

public static final SpatialPropertyPage.E_BoundingVolume SPHERE

ORIENTEDBOX

public static final SpatialPropertyPage.E_BoundingVolume ORIENTEDBOX
Method Detail

values

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

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

valueOf

public static SpatialPropertyPage.E_BoundingVolume 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

getConstant

public static SpatialPropertyPage.E_BoundingVolume getConstant(java.lang.String name)
Returns the enum constant matching the name string.

Parameters:
name - string value of enum constant
Returns:
matching enum constant or null

toString

public java.lang.String toString()
Returns the string value of the constant.

Overrides:
toString in class java.lang.Enum<SpatialPropertyPage.E_BoundingVolume>

getType

public java.lang.String getType()
Returns the integer value of the constant.

Returns: