|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<EnumBooleanTypes>
org.opends.server.authorization.dseecompat.EnumBooleanTypes
public enum EnumBooleanTypes
This class provides an enumeration of the allowed bind rule booelan types.
Enum Constant Summary | |
---|---|
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". |
Method Summary | |
---|---|
static EnumBooleanTypes |
createBindruleOperand(java.lang.String booleanType)
Create a new enumeration type for the specified boolean type name. |
boolean |
isBindRuleBooleanOperand(java.lang.String booleanType)
Checks to see if the boolean type string is equal to the enumeration type name. |
static EnumBooleanTypes |
valueOf(java.lang.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. |
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 EnumBooleanTypes AND_BOOLEAN_TYPE
public static final EnumBooleanTypes OR_BOOLEAN_TYPE
public static final EnumBooleanTypes NOT_BOOLEAN_TYPE
Method Detail |
---|
public static EnumBooleanTypes[] values()
for (EnumBooleanTypes c : EnumBooleanTypes.values()) System.out.println(c);
public static EnumBooleanTypes 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 isBindRuleBooleanOperand(java.lang.String booleanType)
booleanType
- The type name to check equality for.
public static EnumBooleanTypes createBindruleOperand(java.lang.String booleanType)
booleanType
- 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 |