uk.ac.ebi.cytocopter.internal.ui.enums
Enum AlgorithmConfigurationsEnum

java.lang.Object
  extended by java.lang.Enum<AlgorithmConfigurationsEnum>
      extended by uk.ac.ebi.cytocopter.internal.ui.enums.AlgorithmConfigurationsEnum
All Implemented Interfaces:
Serializable, Comparable<AlgorithmConfigurationsEnum>

public enum AlgorithmConfigurationsEnum
extends Enum<AlgorithmConfigurationsEnum>


Enum Constant Summary
ELITISM
           
MAX_GENS
           
MAX_TIME
           
NA_FAC
           
P_MUTATION
           
POP_SIZE
           
REL_TOL
           
SEL_PRES
           
SIZE_FAC
           
STALL_GEN_MAX
           
 
Method Summary
 Double getDefaultValue()
           
 String getDescription()
           
 String getName()
           
 String getRArgName()
           
static AlgorithmConfigurationsEnum valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AlgorithmConfigurationsEnum[] 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

SIZE_FAC

public static final AlgorithmConfigurationsEnum SIZE_FAC

NA_FAC

public static final AlgorithmConfigurationsEnum NA_FAC

POP_SIZE

public static final AlgorithmConfigurationsEnum POP_SIZE

P_MUTATION

public static final AlgorithmConfigurationsEnum P_MUTATION

MAX_TIME

public static final AlgorithmConfigurationsEnum MAX_TIME

MAX_GENS

public static final AlgorithmConfigurationsEnum MAX_GENS

STALL_GEN_MAX

public static final AlgorithmConfigurationsEnum STALL_GEN_MAX

SEL_PRES

public static final AlgorithmConfigurationsEnum SEL_PRES

ELITISM

public static final AlgorithmConfigurationsEnum ELITISM

REL_TOL

public static final AlgorithmConfigurationsEnum REL_TOL
Method Detail

values

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

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

valueOf

public static AlgorithmConfigurationsEnum valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

getDescription

public String getDescription()

getDefaultValue

public Double getDefaultValue()

getName

public String getName()

getRArgName

public String getRArgName()


Copyright © 2014. All rights reserved.