public static enum MatchingAnnotator.MatchingStrategy extends Enum<MatchingAnnotator.MatchingStrategy>
| Enum Constant and Description |
|---|
CASE_SENSITIVE |
LEMMA |
LOWERCASE |
SKIP_STOPWORDS |
| Modifier and Type | Method and Description |
|---|---|
static MatchingAnnotator.MatchingStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MatchingAnnotator.MatchingStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MatchingAnnotator.MatchingStrategy CASE_SENSITIVE
public static final MatchingAnnotator.MatchingStrategy LOWERCASE
public static final MatchingAnnotator.MatchingStrategy LEMMA
public static final MatchingAnnotator.MatchingStrategy SKIP_STOPWORDS
public static MatchingAnnotator.MatchingStrategy[] values()
for (MatchingAnnotator.MatchingStrategy c : MatchingAnnotator.MatchingStrategy.values()) System.out.println(c);
public static MatchingAnnotator.MatchingStrategy 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 nullCopyright © 2020. All rights reserved.