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 and Description |
|---|
CHUNKER |
CONTRACTION_FINDER |
FEATURIZER |
HEAD_FINDER |
LEMMATIZER |
NAME_FINDER |
POS_TAGGER |
SENTENCE_DETECTOR |
SHALLOW_PARSER |
TOKENIZER |
| Modifier and Type | Method and Description |
|---|---|
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.
|
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
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 nameNullPointerException - if the argument is nullpublic String value()
Copyright © 2012–2017 CoGrOO. All rights reserved.