public enum EnumBooleanTypes extends Enum<EnumBooleanTypes>
Enum Constant and Description |
---|
AND_BOOLEAN_TYPE
The enumeration type when the bind rule has specified boolean type of
"AND".
|
NOT_BOOLEAN_TYPE
The enumeration type when the bind rule has specified boolean type of
"NOT".
|
OR_BOOLEAN_TYPE
The enumeration type when the bind rule has specified boolean type of
"OR".
|
Modifier and Type | Method and Description |
---|---|
static EnumBooleanTypes |
createBindruleOperand(String booleanType)
Create a new enumeration type for the specified boolean type name.
|
boolean |
isBindRuleBooleanOperand(String booleanType)
Checks to see if the boolean type string is equal to the enumeration type
name.
|
static EnumBooleanTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnumBooleanTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumBooleanTypes AND_BOOLEAN_TYPE
public static final EnumBooleanTypes OR_BOOLEAN_TYPE
public static final EnumBooleanTypes NOT_BOOLEAN_TYPE
public static EnumBooleanTypes[] values()
for (EnumBooleanTypes c : EnumBooleanTypes.values()) System.out.println(c);
public static EnumBooleanTypes 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 isBindRuleBooleanOperand(String booleanType)
booleanType
- The type name to check equality for.public static EnumBooleanTypes createBindruleOperand(String booleanType)
booleanType
- The name of the enumeration to create.Copyright © 2010-2015 ForgeRock AS. All Rights Reserved.