tp.model
Enum DocsRepresentDB.Preprocessing

java.lang.Object
  extended by java.lang.Enum<DocsRepresentDB.Preprocessing>
      extended by tp.model.DocsRepresentDB.Preprocessing
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DocsRepresentDB.Preprocessing>
Enclosing class:
DocsRepresentDB

public static enum DocsRepresentDB.Preprocessing
extends java.lang.Enum<DocsRepresentDB.Preprocessing>


Enum Constant Summary
NONE
           
STEMMING
           
STOP_LIST
           
STOP_LIST_STEMMING
           
 
Method Summary
static DocsRepresentDB.Preprocessing valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DocsRepresentDB.Preprocessing[] 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

NONE

public static final DocsRepresentDB.Preprocessing NONE

STOP_LIST

public static final DocsRepresentDB.Preprocessing STOP_LIST

STEMMING

public static final DocsRepresentDB.Preprocessing STEMMING

STOP_LIST_STEMMING

public static final DocsRepresentDB.Preprocessing STOP_LIST_STEMMING
Method Detail

values

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

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

valueOf

public static DocsRepresentDB.Preprocessing 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