|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<UserProvider.CaseSensitive>
com.sap.security.um.user.UserProvider.CaseSensitive
public static enum UserProvider.CaseSensitive
Two possible ways to search for user attribute values if supported by the the user provider implementation for the concrete user attribute.
Enum Constant Summary | |
---|---|
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 Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final UserProvider.CaseSensitive NO
public static final UserProvider.CaseSensitive YES
Method Detail |
---|
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 name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |