public enum EnumTargetKeyword extends Enum<EnumTargetKeyword>
Enum Constant and Description |
---|
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".
|
Modifier and Type | Method and Description |
---|---|
static EnumTargetKeyword |
createKeyword(String keyword)
Create an enumeration of the provided keyword name.
|
String |
getKeyword()
Return the enumeration keyword name.
|
boolean |
isKeyword(String keyword)
Checks if the keyword name is equal to the enumeration name.
|
static EnumTargetKeyword |
valueOf(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.
|
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
public static EnumTargetKeyword[] values()
for (EnumTargetKeyword c : EnumTargetKeyword.values()) System.out.println(c);
public static EnumTargetKeyword 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 nullpublic boolean isKeyword(String keyword)
keyword
- The keyword name to check.public static EnumTargetKeyword createKeyword(String keyword)
keyword
- The keyword name to create.public String getKeyword()
Copyright © 2010-2016 ForgeRock AS. All Rights Reserved.