org.cogroo.config
Enum Analyzers

java.lang.Object
  extended by java.lang.Enum<Analyzers>
      extended by org.cogroo.config.Analyzers
All Implemented Interfaces:
Serializable, Comparable<Analyzers>

public enum Analyzers
extends Enum<Analyzers>

Java class for Analyzer.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="Analyzer">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="sentenceDetector"/>
     <enumeration value="tokenizer"/>
     <enumeration value="nameFinder"/>
     <enumeration value="contractionFinder"/>
     <enumeration value="posTagger"/>
     <enumeration value="featurizer"/>
     <enumeration value="lemmatizer"/>
     <enumeration value="chunker"/>
     <enumeration value="headFinder"/>
     <enumeration value="shallowParser"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
CHUNKER
           
CONTRACTION_FINDER
           
FEATURIZER
           
HEAD_FINDER
           
LEMMATIZER
           
NAME_FINDER
           
POS_TAGGER
           
SENTENCE_DETECTOR
           
SHALLOW_PARSER
           
TOKENIZER
           
 
Method Summary
static Analyzers fromValue(String v)
           
 String value()
           
static Analyzers valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Analyzers[] 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

SENTENCE_DETECTOR

public static final Analyzers SENTENCE_DETECTOR

TOKENIZER

public static final Analyzers TOKENIZER

NAME_FINDER

public static final Analyzers NAME_FINDER

CONTRACTION_FINDER

public static final Analyzers CONTRACTION_FINDER

POS_TAGGER

public static final Analyzers POS_TAGGER

FEATURIZER

public static final Analyzers FEATURIZER

LEMMATIZER

public static final Analyzers LEMMATIZER

CHUNKER

public static final Analyzers CHUNKER

HEAD_FINDER

public static final Analyzers HEAD_FINDER

SHALLOW_PARSER

public static final Analyzers SHALLOW_PARSER
Method Detail

values

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

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

valueOf

public static Analyzers 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

value

public String value()

fromValue

public static Analyzers fromValue(String v)


Copyright © 2012-2013 CoGrOO. All Rights Reserved.