public static enum BabelfyParameters.PosTaggingOptions extends java.lang.Enum<BabelfyParameters.PosTaggingOptions>
Enum Constant and Description |
---|
CHAR_BASED_TOKENIZATION_ALL_NOUN
Tokenize the input string by splitting all characters as single tokens (all tagged as
nouns, so that we can disambiguate nouns).
|
INPUT_FRAGMENTS_AS_NOUNS
Interprets input fragment words as nouns.
|
NOMINALIZE_ADJECTIVES
Interprets all adjectives as nouns.
|
STANDARD
Standard PoS tagging process.
|
Modifier and Type | Method and Description |
---|---|
static BabelfyParameters.PosTaggingOptions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BabelfyParameters.PosTaggingOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BabelfyParameters.PosTaggingOptions STANDARD
public static final BabelfyParameters.PosTaggingOptions NOMINALIZE_ADJECTIVES
public static final BabelfyParameters.PosTaggingOptions INPUT_FRAGMENTS_AS_NOUNS
public static final BabelfyParameters.PosTaggingOptions CHAR_BASED_TOKENIZATION_ALL_NOUN
public static BabelfyParameters.PosTaggingOptions[] values()
for (BabelfyParameters.PosTaggingOptions c : BabelfyParameters.PosTaggingOptions.values()) System.out.println(c);
public static BabelfyParameters.PosTaggingOptions valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null