public static enum SearchQuery.LogicalOperator extends java.lang.Enum<SearchQuery.LogicalOperator>
| Enum Constant and Description | 
|---|
AND
Search matches if ALL requested headers are present having the requested
 value 
 | 
OR
Search matches if one of requested headers is present having the requested
 value 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static SearchQuery.LogicalOperator | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static SearchQuery.LogicalOperator[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final SearchQuery.LogicalOperator AND
public static final SearchQuery.LogicalOperator OR
public static SearchQuery.LogicalOperator[] values()
for (SearchQuery.LogicalOperator c : SearchQuery.LogicalOperator.values()) System.out.println(c);
public static SearchQuery.LogicalOperator 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 nullCopyright © 2023. All Rights Reserved.