public static enum QueryOptions.QueryGrammar.Tokenize extends Enum<QueryOptions.QueryGrammar.Tokenize>
Enum Constant and Description |
---|
DEFAULT
Uses the default tokenizing strategy for distinguishing terms.
|
WORD
Uses word boundaries to distinguish terms.
|
Modifier and Type | Method and Description |
---|---|
static QueryOptions.QueryGrammar.Tokenize |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryOptions.QueryGrammar.Tokenize[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryOptions.QueryGrammar.Tokenize DEFAULT
public static final QueryOptions.QueryGrammar.Tokenize WORD
public static QueryOptions.QueryGrammar.Tokenize[] values()
for (QueryOptions.QueryGrammar.Tokenize c : QueryOptions.QueryGrammar.Tokenize.values()) System.out.println(c);
public static QueryOptions.QueryGrammar.Tokenize 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 © 2013-2016 MarkLogic Corporation.