public static enum SearchFilter.LogicalOperation extends java.lang.Enum<SearchFilter.LogicalOperation>
Enum Constant and Description |
---|
AND
This enum represents the logical operation "AND".
|
OR
This enum represents the logical operation "OR".
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getStringValue()
Obtains the string value for the enum.
|
static SearchFilter.LogicalOperation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SearchFilter.LogicalOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchFilter.LogicalOperation AND
public static final SearchFilter.LogicalOperation OR
public static SearchFilter.LogicalOperation[] values()
for (SearchFilter.LogicalOperation c : SearchFilter.LogicalOperation.values()) System.out.println(c);
public static SearchFilter.LogicalOperation 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 java.lang.String getStringValue()