org.ode4j.ode
Enum DGeom.COLLIDER_MERGE_CONTACTS_VALUE

java.lang.Object
  extended by java.lang.Enum<DGeom.COLLIDER_MERGE_CONTACTS_VALUE>
      extended by org.ode4j.ode.DGeom.COLLIDER_MERGE_CONTACTS_VALUE
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DGeom.COLLIDER_MERGE_CONTACTS_VALUE>
Enclosing interface:
DGeom

public static enum DGeom.COLLIDER_MERGE_CONTACTS_VALUE
extends java.lang.Enum<DGeom.COLLIDER_MERGE_CONTACTS_VALUE>


Enum Constant Summary
dGeomColliderMergeContactsValue__Default
           
dGeomColliderMergeContactsValue_Full
           
dGeomColliderMergeContactsValue_None
           
dGeomColliderMergeContactsValue_Normals
           
 
Method Summary
static DGeom.COLLIDER_MERGE_CONTACTS_VALUE valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DGeom.COLLIDER_MERGE_CONTACTS_VALUE[] 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

dGeomColliderMergeContactsValue__Default

public static final DGeom.COLLIDER_MERGE_CONTACTS_VALUE dGeomColliderMergeContactsValue__Default

dGeomColliderMergeContactsValue_None

public static final DGeom.COLLIDER_MERGE_CONTACTS_VALUE dGeomColliderMergeContactsValue_None

dGeomColliderMergeContactsValue_Normals

public static final DGeom.COLLIDER_MERGE_CONTACTS_VALUE dGeomColliderMergeContactsValue_Normals

dGeomColliderMergeContactsValue_Full

public static final DGeom.COLLIDER_MERGE_CONTACTS_VALUE dGeomColliderMergeContactsValue_Full
Method Detail

values

public static DGeom.COLLIDER_MERGE_CONTACTS_VALUE[] 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 (DGeom.COLLIDER_MERGE_CONTACTS_VALUE c : DGeom.COLLIDER_MERGE_CONTACTS_VALUE.values())
    System.out.println(c);

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

valueOf

public static DGeom.COLLIDER_MERGE_CONTACTS_VALUE 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