public static enum UserProvider.CaseSensitive extends Enum<UserProvider.CaseSensitive>
Enum Constant and Description |
---|
NO
Search argument used to express that the operation should search also for
attribute values which do not match the case of the provided criteria (if
this is supported by the user provider implementation for the concrete
user attribute).
|
YES
Search argument used to express that the operation should only search for
attribute values which match the case of the provided criteria (if this
is supported by the user provider implementation for the concrete user
attribute).
|
Modifier and Type | Method and Description |
---|---|
static UserProvider.CaseSensitive |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserProvider.CaseSensitive[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserProvider.CaseSensitive NO
public static final UserProvider.CaseSensitive YES
public static UserProvider.CaseSensitive[] values()
for (UserProvider.CaseSensitive c : UserProvider.CaseSensitive.values()) System.out.println(c);
public static UserProvider.CaseSensitive 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 © 2023 SAP. All rights reserved.