|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<EnumBindRuleType>
org.opends.server.authorization.dseecompat.EnumBindRuleType
public enum EnumBindRuleType
This class provides an enumeration of the allowed bind rule types.
| Enum Constant Summary | |
|---|---|
EQUAL_BINDRULE_TYPE
The enumeration type when the bind rule has specified type of "=". |
|
GREATER_BINDRULE_TYPE
The enumeration type when the bind rule has specified type of >". |
|
GREATER_OR_EQUAL_BINDRULE_TYPE
The enumeration type when the bind rule has specified type of ">=". |
|
LESS_BINDRULE_TYPE
The enumeration type when the bind rule has specified type of "<". |
|
LESS_OR_EQUAL_BINDRULE_TYPE
The enumeration type when the bind rule has specified type of "<=". |
|
NOT_EQUAL_BINDRULE_TYPE
The enumeration type when the bind rule has specified type of "!=". |
|
| Method Summary | |
|---|---|
static EnumBindRuleType |
createBindruleOperand(java.lang.String type)
Create a new enumeration type for the specified type name. |
boolean |
isBindRuleType(java.lang.String type)
Checks to see if the type string is equal to the enumeration type name. |
static EnumBindRuleType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static EnumBindRuleType[] |
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 EnumBindRuleType EQUAL_BINDRULE_TYPE
public static final EnumBindRuleType NOT_EQUAL_BINDRULE_TYPE
public static final EnumBindRuleType LESS_BINDRULE_TYPE
public static final EnumBindRuleType LESS_OR_EQUAL_BINDRULE_TYPE
public static final EnumBindRuleType GREATER_BINDRULE_TYPE
public static final EnumBindRuleType GREATER_OR_EQUAL_BINDRULE_TYPE
| Method Detail |
|---|
public static EnumBindRuleType[] values()
for (EnumBindRuleType c : EnumBindRuleType.values()) System.out.println(c);
public static EnumBindRuleType 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 isBindRuleType(java.lang.String type)
type - The type name to check equality for.
public static EnumBindRuleType createBindruleOperand(java.lang.String type)
type - 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 | ||||||||