startup.features
Enum FeatureRecognition.TARGET

java.lang.Object
  extended by java.lang.Enum<FeatureRecognition.TARGET>
      extended by startup.features.FeatureRecognition.TARGET
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<FeatureRecognition.TARGET>
Enclosing class:
FeatureRecognition

public static enum FeatureRecognition.TARGET
extends java.lang.Enum<FeatureRecognition.TARGET>

What action to do: a) WRITE_SVG : simply make an SVG picture of the features. Use BATIK for this. b) FIND_SUPPORT : After the features have been selected, watch what the support is for each feature, by examining the source files as well. c) COMPARE_SCORES: Compare the scores of two different runs of the same workflow and algorithm. Because data is selected in a randomized way, we might have different feature selection filters. d) EXPL : Print an explanation string for each retained feature. Usefull for interpretation of the features.

Author:
Michiel Van Bel

Enum Constant Summary
COMPARE_SCORES
           
EXPL
           
FIND_SUPPORT
           
WRITE_SVG
           
 
Method Summary
static FeatureRecognition.TARGET valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FeatureRecognition.TARGET[] 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

WRITE_SVG

public static final FeatureRecognition.TARGET WRITE_SVG

FIND_SUPPORT

public static final FeatureRecognition.TARGET FIND_SUPPORT

COMPARE_SCORES

public static final FeatureRecognition.TARGET COMPARE_SCORES

EXPL

public static final FeatureRecognition.TARGET EXPL
Method Detail

values

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

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

valueOf

public static FeatureRecognition.TARGET 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