@Exported public enum BinaryRelationalOperator extends Enum<BinaryRelationalOperator>
Searcher API.| Enum Constant and Description |
|---|
CONTAINS
Represents the relational contains operator.
|
EQUALS
Represents the relational equality operator.
|
| Modifier and Type | Method and Description |
|---|---|
String |
negativeSymbolic() |
String |
symbolic() |
static BinaryRelationalOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BinaryRelationalOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BinaryRelationalOperator EQUALS
public static final BinaryRelationalOperator CONTAINS
public static BinaryRelationalOperator[] values()
for (BinaryRelationalOperator c : BinaryRelationalOperator.values()) System.out.println(c);
public static BinaryRelationalOperator 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 nullpublic String symbolic()
public String negativeSymbolic()