public static enum ParseOptions.TextMode extends java.lang.Enum<ParseOptions.TextMode>
| Enum Constant and Description | 
|---|
ADVANCED
The mode value to use to perform a text search
 with advanced search syntax (wildcard, field, etc). 
 | 
ALL_WORDS
The mode value to use to perform a text search
 matching all the words of the search string. 
 | 
ANY_WORD
The mode value to use to perform a text search
 matching at least one of the words of the search string. 
 | 
EXACT
The mode value to use to perform a text search
 matching the exact phrase specified in the search string. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static ParseOptions.TextMode | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static ParseOptions.TextMode[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ParseOptions.TextMode ALL_WORDS
public static final ParseOptions.TextMode ANY_WORD
public static final ParseOptions.TextMode EXACT
public static final ParseOptions.TextMode ADVANCED
public static ParseOptions.TextMode[] values()
for (ParseOptions.TextMode c : ParseOptions.TextMode.values()) System.out.println(c);
public static ParseOptions.TextMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2001-2018 Jalios SA. All Rights Reserved.