util.featureSelection
Enum FeatureSelectionStub.FEATURE_SELECTION_PURPOSE

java.lang.Object
  extended by java.lang.Enum<FeatureSelectionStub.FEATURE_SELECTION_PURPOSE>
      extended by util.featureSelection.FeatureSelectionStub.FEATURE_SELECTION_PURPOSE
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<FeatureSelectionStub.FEATURE_SELECTION_PURPOSE>
Enclosing class:
FeatureSelectionStub

public static enum FeatureSelectionStub.FEATURE_SELECTION_PURPOSE
extends java.lang.Enum<FeatureSelectionStub.FEATURE_SELECTION_PURPOSE>


Enum Constant Summary
LOAD_FILTER
           
USE_AND_WRITE_FULL_FILTER
           
USE_FILTER
           
WRITE_FULL_FILTER
           
WRITE_MINIMAL_FILTER
           
 
Method Summary
static FeatureSelectionStub.FEATURE_SELECTION_PURPOSE valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FeatureSelectionStub.FEATURE_SELECTION_PURPOSE[] 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

USE_FILTER

public static final FeatureSelectionStub.FEATURE_SELECTION_PURPOSE USE_FILTER

WRITE_MINIMAL_FILTER

public static final FeatureSelectionStub.FEATURE_SELECTION_PURPOSE WRITE_MINIMAL_FILTER

WRITE_FULL_FILTER

public static final FeatureSelectionStub.FEATURE_SELECTION_PURPOSE WRITE_FULL_FILTER

LOAD_FILTER

public static final FeatureSelectionStub.FEATURE_SELECTION_PURPOSE LOAD_FILTER

USE_AND_WRITE_FULL_FILTER

public static final FeatureSelectionStub.FEATURE_SELECTION_PURPOSE USE_AND_WRITE_FULL_FILTER
Method Detail

values

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

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

valueOf

public static FeatureSelectionStub.FEATURE_SELECTION_PURPOSE 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