public enum EnumBindRuleType extends Enum<EnumBindRuleType>
Enum Constant and Description |
---|
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
"!=".
|
Modifier and Type | Method and Description |
---|---|
static EnumBindRuleType |
createBindruleOperand(String type)
Create a new enumeration type for the specified type name.
|
String |
getType()
Returns the comparison operator corresponding to this EnumBindRuleType.
|
boolean |
isBindRuleType(String type)
Checks to see if the type string is equal to the enumeration type
name.
|
static EnumBindRuleType |
valueOf(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.
|
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
public static EnumBindRuleType[] values()
for (EnumBindRuleType c : EnumBindRuleType.values()) System.out.println(c);
public static EnumBindRuleType 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 String getType()
public boolean isBindRuleType(String type)
type
- The type name to check equality for.public static EnumBindRuleType createBindruleOperand(String type)
type
- The name of the enumeration to create.Copyright © 2010-2015 ForgeRock AS. All Rights Reserved.