@Exported public static enum SearchCriteria.Operation extends Enum<SearchCriteria.Operation>
| Modifier and Type | Method and Description | 
|---|---|
| static SearchCriteria.Operation | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static SearchCriteria.Operation[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final SearchCriteria.Operation ANY
public static final SearchCriteria.Operation ALL
public static SearchCriteria.Operation[] values()
for (SearchCriteria.Operation c : SearchCriteria.Operation.values()) System.out.println(c);
public static SearchCriteria.Operation 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 null