|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Analyzers>
org.cogroo.config.Analyzers
public 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 |
---|
public static final Analyzers SENTENCE_DETECTOR
public static final Analyzers TOKENIZER
public static final Analyzers NAME_FINDER
public static final Analyzers CONTRACTION_FINDER
public static final Analyzers POS_TAGGER
public static final Analyzers FEATURIZER
public static final Analyzers LEMMATIZER
public static final Analyzers CHUNKER
public static final Analyzers HEAD_FINDER
public static final Analyzers SHALLOW_PARSER
Method Detail |
---|
public static Analyzers[] values()
for (Analyzers c : Analyzers.values()) System.out.println(c);
public static Analyzers valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic String value()
public static Analyzers fromValue(String v)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |