public static enum UserProvider.SearchOperator extends Enum<UserProvider.SearchOperator>
Enum Constant and Description |
---|
EQUALS
Search operator for exact match of the search criteria.
|
Modifier and Type | Method and Description |
---|---|
static UserProvider.SearchOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserProvider.SearchOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserProvider.SearchOperator EQUALS
public static UserProvider.SearchOperator[] values()
for (UserProvider.SearchOperator c : UserProvider.SearchOperator.values()) System.out.println(c);
public static UserProvider.SearchOperator 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 SAP. All Rights Reserved.