fr.inria.optimization.cmaes
Enum CMAParameters.RecombinationType

java.lang.Object
  extended by java.lang.Enum<CMAParameters.RecombinationType>
      extended by fr.inria.optimization.cmaes.CMAParameters.RecombinationType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<CMAParameters.RecombinationType>
Enclosing class:
CMAParameters

public static enum CMAParameters.RecombinationType
extends java.lang.Enum<CMAParameters.RecombinationType>


Enum Constant Summary
equal
           
linear
           
superlinear
           
 
Method Summary
static CMAParameters.RecombinationType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static CMAParameters.RecombinationType[] 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

superlinear

public static final CMAParameters.RecombinationType superlinear

linear

public static final CMAParameters.RecombinationType linear

equal

public static final CMAParameters.RecombinationType equal
Method Detail

values

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

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

valueOf

public static CMAParameters.RecombinationType 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