public enum FTMode extends Enum<FTMode>
Enum Constant and Description |
---|
ALL
All option.
|
ALL_WORDS
All words option.
|
ANY
Any option.
|
ANY_WORD
Any word option.
|
PHRASE
Phrase search.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static FTMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FTMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FTMode ALL
public static final FTMode ALL_WORDS
public static final FTMode ANY
public static final FTMode ANY_WORD
public static final FTMode PHRASE
public static FTMode[] values()
for (FTMode c : FTMode.values()) System.out.println(c);
public static FTMode 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 © 2005–2015 BaseX Team. All rights reserved.