public enum TokenizerMode extends Enum<TokenizerMode>
| Modifier and Type | Method and Description |
|---|---|
static TokenizerMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TokenizerMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TokenizerMode BINARY
public static final TokenizerMode COUNT
public static final TokenizerMode TFIDF
public static final TokenizerMode FREQ
public static TokenizerMode[] values()
for (TokenizerMode c : TokenizerMode.values()) System.out.println(c);
public static TokenizerMode 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 © 2021. All rights reserved.