|
Groovy Documentation | |||||||
| FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | PROPERTY | METHOD | DETAIL: ENUM CONSTANTS | FIELD | PROPERTY | METHOD | |||||||
java.lang.Objectcom.ace.mws.enums.ComparisonOperator
enum ComparisonOperator
This enumeration is used when Moab needs to compare items. One such use is in Access Control Lists (ACLs).
| Enum Constant Summary | |
|---|---|
EQUAL
Valid values: "==", "eq", "=" |
|
GREATER_THAN
Valid values: ">", "gt" |
|
GREATER_THAN_OR_EQUAL
Valid values: ">=", "ge" |
|
LESS_THAN
Valid values: "<", "lt" |
|
LESS_THAN_OR_EQUAL
Valid values: "<=", "le" |
|
LEXIGRAPHIC_EQUAL
Valid value: "%=" |
|
LEXIGRAPHIC_NOT_EQUAL
Valid value: "%!" |
|
LEXIGRAPHIC_SUBSTRING
Valid value: "%<" |
|
NOT_EQUAL
Valid values: "!=", "ne", "<>" |
|
| Property Summary | |
|---|---|
String |
compare1
|
String |
compare2
|
String |
compare3
|
| Constructor Summary | |
ComparisonOperator(String compare1, String compare2 = null, String compare3 = null)
|
|
| Method Summary | |
|---|---|
static def
|
parseString(String string)
|
String
|
toString()
|
String
|
toString2()
|
ComparisonOperator
|
valueOf(String name)
Returns the enum constant of this type with the specified name. |
ComparisonOperator[]
|
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class Object | |
|---|---|
| wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll |
| Enum Constant Detail |
|---|
ComparisonOperator EQUAL
ComparisonOperator GREATER_THAN
ComparisonOperator GREATER_THAN_OR_EQUAL
ComparisonOperator LESS_THAN
ComparisonOperator LESS_THAN_OR_EQUAL
ComparisonOperator LEXIGRAPHIC_EQUAL
ComparisonOperator LEXIGRAPHIC_NOT_EQUAL
ComparisonOperator LEXIGRAPHIC_SUBSTRING
ComparisonOperator NOT_EQUAL
| Property Detail |
|---|
String compare1
String compare2
String compare3
| Constructor Detail |
|---|
ComparisonOperator(String compare1, String compare2 = null, String compare3 = null)
| Method Detail |
|---|
static def parseString(String string)
String toString()
String toString2()
ComparisonOperator valueOf(String name)
ComparisonOperator[] values()
Groovy Documentation