|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<EnumTargetKeyword>
org.opends.server.authorization.dseecompat.EnumTargetKeyword
public enum EnumTargetKeyword
This class provides an enumeration of the valid ACI target keywords.
Enum Constant Summary | |
---|---|
KEYWORD_EXTOP
This enumeration is returned when the target keyword is "extop". |
|
KEYWORD_TARGATTRFILTERS
This enumeration is returned when the target keyword is "targattrfilters". |
|
KEYWORD_TARGET
This enumeration is returned when the target keyword is "target". |
|
KEYWORD_TARGETATTR
This enumeration is returned when the target keyword is "targetattr". |
|
KEYWORD_TARGETCONTROL
This enumeration is returned when the target keyword is "targetcontrol". |
|
KEYWORD_TARGETFILTER
This enumeration is returned when the target keyword is "targetfilter". |
|
KEYWORD_TARGETSCOPE
This enumeration is returned when the target keyword is "targetscope". |
Method Summary | |
---|---|
static EnumTargetKeyword |
createKeyword(java.lang.String keyword)
Create an enumeration of the provided keyword name. |
java.lang.String |
getKeyword()
Return the enumeration keyword name. |
boolean |
isKeyword(java.lang.String keyword)
Checks if the keyword name is equal to the enumeration name. |
static EnumTargetKeyword |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static EnumTargetKeyword[] |
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 EnumTargetKeyword KEYWORD_TARGET
public static final EnumTargetKeyword KEYWORD_TARGETATTR
public static final EnumTargetKeyword KEYWORD_TARGETSCOPE
public static final EnumTargetKeyword KEYWORD_TARGETFILTER
public static final EnumTargetKeyword KEYWORD_TARGATTRFILTERS
public static final EnumTargetKeyword KEYWORD_TARGETCONTROL
public static final EnumTargetKeyword KEYWORD_EXTOP
Method Detail |
---|
public static EnumTargetKeyword[] values()
for (EnumTargetKeyword c : EnumTargetKeyword.values()) System.out.println(c);
public static EnumTargetKeyword 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 isKeyword(java.lang.String keyword)
keyword
- The keyword name to check.
public static EnumTargetKeyword createKeyword(java.lang.String keyword)
keyword
- The keyword name to create.
public java.lang.String getKeyword()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |