public enum SearchAnalyzerCase extends Enum<SearchAnalyzerCase>
Enum Constant and Description |
---|
lower
convert to all lower-case characters
|
none
to not change character case
|
upper
convert to all upper-case characters
|
Modifier and Type | Method and Description |
---|---|
static SearchAnalyzerCase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SearchAnalyzerCase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchAnalyzerCase lower
public static final SearchAnalyzerCase upper
public static final SearchAnalyzerCase none
public static SearchAnalyzerCase[] values()
for (SearchAnalyzerCase c : SearchAnalyzerCase.values()) System.out.println(c);
public static SearchAnalyzerCase 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–2022 ArangoDB GmbH. All rights reserved.