Package com.sap.security.um.user
Enum UserProvider.CaseSensitive
- All Implemented Interfaces:
Serializable
,Comparable<UserProvider.CaseSensitive>
,Constable
- Enclosing interface:
- UserProvider
Two possible ways to search for user attribute values if supported by the
the user provider implementation for the concrete user attribute.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSearch 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).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). -
Method Summary
Modifier and TypeMethodDescriptionstatic UserProvider.CaseSensitive
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.
-
Enum Constant Details
-
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).
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-