org.ode4j.ode
Enum OdeMath.OP

java.lang.Object
  extended by java.lang.Enum<OdeMath.OP>
      extended by org.ode4j.ode.OdeMath.OP
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<OdeMath.OP>
Enclosing class:
OdeMath

Deprecated.

@Deprecated
public static enum OdeMath.OP
extends java.lang.Enum<OdeMath.OP>


Enum Constant Summary
ADD
          Deprecated.  
ADD_EQ
          Deprecated. +=
DIV
          Deprecated.  
EQ
          Deprecated.  
EQ_SUB
          Deprecated. =-
MUL
          Deprecated.  
MUL_EQ
          Deprecated. =
SUB
          Deprecated.  
SUB_EQ
          Deprecated. -=
 
Method Summary
static OdeMath.OP valueOf(java.lang.String name)
          Deprecated. Returns the enum constant of this type with the specified name.
static OdeMath.OP[] values()
          Deprecated. 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

ADD

public static final OdeMath.OP ADD
Deprecated. 

SUB

public static final OdeMath.OP SUB
Deprecated. 

MUL

public static final OdeMath.OP MUL
Deprecated. 

DIV

public static final OdeMath.OP DIV
Deprecated. 

EQ

public static final OdeMath.OP EQ
Deprecated. 

ADD_EQ

public static final OdeMath.OP ADD_EQ
Deprecated. 
+=


EQ_SUB

public static final OdeMath.OP EQ_SUB
Deprecated. 
=-


MUL_EQ

public static final OdeMath.OP MUL_EQ
Deprecated. 
=


SUB_EQ

public static final OdeMath.OP SUB_EQ
Deprecated. 
-=

Method Detail

values

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

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

valueOf

public static OdeMath.OP valueOf(java.lang.String name)
Deprecated. 
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