hex
Enum DGLM.CaseMode

java.lang.Object
  extended by java.lang.Enum<DGLM.CaseMode>
      extended by hex.DGLM.CaseMode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DGLM.CaseMode>
Enclosing class:
DGLM

public static enum DGLM.CaseMode
extends java.lang.Enum<DGLM.CaseMode>


Enum Constant Summary
eq
           
gt
           
gte
           
lt
           
lte
           
neq
           
none
           
 
Method Summary
 java.lang.String exp(double v)
           
 boolean isCase(double x, double y)
           
 java.lang.String toString()
           
static DGLM.CaseMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DGLM.CaseMode[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

none

public static final DGLM.CaseMode none

lt

public static final DGLM.CaseMode lt

gt

public static final DGLM.CaseMode gt

lte

public static final DGLM.CaseMode lte

gte

public static final DGLM.CaseMode gte

eq

public static final DGLM.CaseMode eq

neq

public static final DGLM.CaseMode neq
Method Detail

values

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

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

valueOf

public static DGLM.CaseMode 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

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<DGLM.CaseMode>

exp

public java.lang.String exp(double v)

isCase

public final boolean isCase(double x,
                            double y)