public static enum VocabularyDetector.CaseSensitivity extends Enum<VocabularyDetector.CaseSensitivity>
| Enum Constant and Description |
|---|
full
Vocabulary entries are matched fully case sensitive with the text
|
off
Case insensitive matching
|
smart
All upper case words are matched case sensitive.
|
| Modifier and Type | Field and Description |
|---|---|
static VocabularyDetector.CaseSensitivity |
DEFAULT
By default
VocabularyDetector.CaseSensitivity is set to off |
| Modifier and Type | Method and Description |
|---|---|
static VocabularyDetector.CaseSensitivity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VocabularyDetector.CaseSensitivity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VocabularyDetector.CaseSensitivity full
public static final VocabularyDetector.CaseSensitivity smart
public static final VocabularyDetector.CaseSensitivity off
public static final VocabularyDetector.CaseSensitivity DEFAULT
VocabularyDetector.CaseSensitivity is set to offpublic static VocabularyDetector.CaseSensitivity[] values()
for (VocabularyDetector.CaseSensitivity c : VocabularyDetector.CaseSensitivity.values()) System.out.println(c);
public static VocabularyDetector.CaseSensitivity 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 © 2016–2017 Redlink GmbH. All rights reserved.