public enum PhraseOperator extends Enum<PhraseOperator>
| Enum Constant and Description |
|---|
CONTAINS |
ENDSWITH |
EQUAL |
GREATERTHAN |
GREATERTHANOREQUAL |
NOTEQUAL |
SMALLERTHAN |
SMALLERTHANOREQUAL |
STARTSWITH |
| Modifier and Type | Method and Description |
|---|---|
static PhraseOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PhraseOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PhraseOperator EQUAL
public static final PhraseOperator NOTEQUAL
public static final PhraseOperator GREATERTHAN
public static final PhraseOperator SMALLERTHAN
public static final PhraseOperator GREATERTHANOREQUAL
public static final PhraseOperator SMALLERTHANOREQUAL
public static final PhraseOperator CONTAINS
public static final PhraseOperator STARTSWITH
public static final PhraseOperator ENDSWITH
public static PhraseOperator[] values()
for (PhraseOperator c : PhraseOperator.values()) System.out.println(c);
public static PhraseOperator 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 © 2020. All rights reserved.