meshi.optimizers
Enum Optimizer.OptimizerStatus

java.lang.Object
  extended by java.lang.Enum<Optimizer.OptimizerStatus>
      extended by meshi.optimizers.Optimizer.OptimizerStatus
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Optimizer.OptimizerStatus>
Enclosing class:
Optimizer

public static enum Optimizer.OptimizerStatus
extends java.lang.Enum<Optimizer.OptimizerStatus>


Enum Constant Summary
CONVERGED
           
DONE
           
KILLED
           
RUNNING
           
UNCONVERGED
           
 
Method Summary
static Optimizer.OptimizerStatus valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Optimizer.OptimizerStatus[] 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, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

RUNNING

public static final Optimizer.OptimizerStatus RUNNING

CONVERGED

public static final Optimizer.OptimizerStatus CONVERGED

UNCONVERGED

public static final Optimizer.OptimizerStatus UNCONVERGED

KILLED

public static final Optimizer.OptimizerStatus KILLED

DONE

public static final Optimizer.OptimizerStatus DONE
Method Detail

values

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

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

valueOf

public static Optimizer.OptimizerStatus 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