|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<EnumBindRuleKeyword>
org.opends.server.authorization.dseecompat.EnumBindRuleKeyword
public enum EnumBindRuleKeyword
This class provides an enumeration of the allowed bind rule keyword types.
Enum Constant Summary | |
---|---|
AUTHMETHOD
The enumeration type when the bind rule has specified keyword of authmethod. |
|
DAYOFWEEK
The enumeration type when the bind rule has specified keyword of dayofweek. |
|
DNS
The enumeration type when the bind rule has specified keyword of dns. |
|
GROUPDN
The enumeration type when the bind rule has specified keyword of groupdn. |
|
IP
The enumeration type when the bind rule has specified keyword of ip. |
|
ROLEDN
The enumeration type when the bind rule has specified keyword of roledn. |
|
TIMEOFDAY
The enumeration type when the bind rule has specified keyword of timeofday. |
|
USERATTR
The enumeration type when the bind rule has specified keyword of userattr. |
|
USERDN
The enumeration type when the bind rule has specified keyword of userdn. |
Method Summary | |
---|---|
static EnumBindRuleKeyword |
createBindRuleKeyword(java.lang.String keywordStr)
Create a new enumeration type for the specified keyword name. |
boolean |
isBindRuleKeyword(java.lang.String keywordStr)
Checks to see if the keyword string is equal to the enumeration. |
static EnumBindRuleKeyword |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static EnumBindRuleKeyword[] |
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 EnumBindRuleKeyword USERDN
public static final EnumBindRuleKeyword GROUPDN
public static final EnumBindRuleKeyword ROLEDN
public static final EnumBindRuleKeyword IP
public static final EnumBindRuleKeyword DNS
public static final EnumBindRuleKeyword DAYOFWEEK
public static final EnumBindRuleKeyword TIMEOFDAY
public static final EnumBindRuleKeyword USERATTR
public static final EnumBindRuleKeyword AUTHMETHOD
Method Detail |
---|
public static EnumBindRuleKeyword[] values()
for (EnumBindRuleKeyword c : EnumBindRuleKeyword.values()) System.out.println(c);
public static EnumBindRuleKeyword valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is nullpublic boolean isBindRuleKeyword(java.lang.String keywordStr)
keywordStr
- The keyword name to check equality for.
public static EnumBindRuleKeyword createBindRuleKeyword(java.lang.String keywordStr)
keywordStr
- The name of the enumeration to create.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |