public enum OptimizationAlgorithms extends java.lang.Enum<OptimizationAlgorithms> implements IOptimizationAlgorithm
Enum Constant and Description |
---|
BEST_OF_12 |
BEST_OF_2 |
NO_CHOICE |
NSGAII |
PAES |
UNTIL_BEST |
Modifier and Type | Method and Description |
---|---|
static OptimizationAlgorithms |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OptimizationAlgorithms[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
getType
public static final OptimizationAlgorithms NSGAII
public static final OptimizationAlgorithms PAES
public static final OptimizationAlgorithms BEST_OF_2
public static final OptimizationAlgorithms BEST_OF_12
public static final OptimizationAlgorithms NO_CHOICE
public static final OptimizationAlgorithms UNTIL_BEST
public static OptimizationAlgorithms[] values()
for (OptimizationAlgorithms c : OptimizationAlgorithms.values()) System.out.println(c);
public static OptimizationAlgorithms valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null