public enum StringOperatorMode extends java.lang.Enum<StringOperatorMode>
| Enum Constant and Description |
|---|
AND |
ANY |
NEAR |
NONE |
OR |
ORDERED_NEAR |
PHRASE |
| Modifier and Type | Method and Description |
|---|---|
static StringOperatorMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StringOperatorMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StringOperatorMode AND
public static final StringOperatorMode ANY
public static final StringOperatorMode NEAR
public static final StringOperatorMode NONE
public static final StringOperatorMode OR
public static final StringOperatorMode ORDERED_NEAR
public static final StringOperatorMode PHRASE
public static StringOperatorMode 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 nullpublic static StringOperatorMode[] values()
for (StringOperatorMode c : StringOperatorMode.values()) System.out.println(c);