org.ode4j.ode
Enum DJoint.PARAM_GROUPS

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

public static enum DJoint.PARAM_GROUPS
extends java.lang.Enum<DJoint.PARAM_GROUPS>


Enum Constant Summary
dParamGroup1
           
dParamGroup2
           
dParamGroup3
           
 
Method Summary
 int getIndex()
           
static DJoint.PARAM_GROUPS valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DJoint.PARAM_GROUPS[] 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

dParamGroup1

public static final DJoint.PARAM_GROUPS dParamGroup1

dParamGroup2

public static final DJoint.PARAM_GROUPS dParamGroup2

dParamGroup3

public static final DJoint.PARAM_GROUPS dParamGroup3
Method Detail

values

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

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

valueOf

public static DJoint.PARAM_GROUPS 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

getIndex

public int getIndex()