org.ode4j.ode
Enum DJoint.PARAM

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

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


Enum Constant Summary
dParamBounce
           
dParamCFM
           
dParamERP
           
dParamFMax
           
dParamFudgeFactor
           
dParamHiStop
           
dParamLoStop
           
dParamStopCFM
           
dParamStopERP
           
dParamSuspensionCFM
           
dParamSuspensionERP
           
dParamVel
           
 
Method Summary
 DJoint.PARAM and(int i)
           
static DJoint.PARAM toEnum(int n)
           
static DJoint.PARAM valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DJoint.PARAM[] 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

dParamLoStop

public static final DJoint.PARAM dParamLoStop

dParamHiStop

public static final DJoint.PARAM dParamHiStop

dParamVel

public static final DJoint.PARAM dParamVel

dParamFMax

public static final DJoint.PARAM dParamFMax

dParamFudgeFactor

public static final DJoint.PARAM dParamFudgeFactor

dParamBounce

public static final DJoint.PARAM dParamBounce

dParamCFM

public static final DJoint.PARAM dParamCFM

dParamStopERP

public static final DJoint.PARAM dParamStopERP

dParamStopCFM

public static final DJoint.PARAM dParamStopCFM

dParamSuspensionERP

public static final DJoint.PARAM dParamSuspensionERP

dParamSuspensionCFM

public static final DJoint.PARAM dParamSuspensionCFM

dParamERP

public static final DJoint.PARAM dParamERP
Method Detail

values

public static DJoint.PARAM[] 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 c : DJoint.PARAM.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 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

and

public DJoint.PARAM and(int i)

toEnum

public static DJoint.PARAM toEnum(int n)