public static enum FTWords.FTMode extends java.lang.Enum<FTWords.FTMode>
| Enum Constant and Description |
|---|
M_ALL
All option.
|
M_ALLWORDS
All words option.
|
M_ANY
Any option.
|
M_ANYWORD
Any words option.
|
M_PHRASE
Phrase search.
|
| Modifier and Type | Method and Description |
|---|---|
static FTWords.FTMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FTWords.FTMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FTWords.FTMode M_ALL
public static final FTWords.FTMode M_ALLWORDS
public static final FTWords.FTMode M_ANY
public static final FTWords.FTMode M_ANYWORD
public static final FTWords.FTMode M_PHRASE
public static FTWords.FTMode[] values()
for (FTWords.FTMode c : FTWords.FTMode.values()) System.out.println(c);
public static FTWords.FTMode 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 null