geneticWedge.gp.postProcess
Enum PostProcessor.SELECT_MODE

java.lang.Object
  extended by java.lang.Enum<PostProcessor.SELECT_MODE>
      extended by geneticWedge.gp.postProcess.PostProcessor.SELECT_MODE
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<PostProcessor.SELECT_MODE>
Enclosing class:
PostProcessor

public static enum PostProcessor.SELECT_MODE
extends java.lang.Enum<PostProcessor.SELECT_MODE>

SELECT_MODE sets the method by which the 'best' individual is selected.


Enum Constant Summary
AVERAGE
           
BETTER_TRAIN
           
TEST_ONLY
           
TRAIN_ONLY
           
VAL_ONLY
           
 
Method Summary
static PostProcessor.SELECT_MODE valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PostProcessor.SELECT_MODE[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

VAL_ONLY

public static final PostProcessor.SELECT_MODE VAL_ONLY

TRAIN_ONLY

public static final PostProcessor.SELECT_MODE TRAIN_ONLY

TEST_ONLY

public static final PostProcessor.SELECT_MODE TEST_ONLY

BETTER_TRAIN

public static final PostProcessor.SELECT_MODE BETTER_TRAIN

AVERAGE

public static final PostProcessor.SELECT_MODE AVERAGE
Method Detail

values

public static final PostProcessor.SELECT_MODE[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(PostProcessor.SELECT_MODE c : PostProcessor.SELECT_MODE.values())
        System.out.println(c);

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

valueOf

public static PostProcessor.SELECT_MODE 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