Groovy Documentation

com.ace.mws.enums
[Groovy] Enum ComparisonOperator

java.lang.Object
  com.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).

Authors:
vrb


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()

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

EQUAL

ComparisonOperator EQUAL
Valid values: "==", "eq", "="


GREATER_THAN

ComparisonOperator GREATER_THAN
Valid values: ">", "gt"


GREATER_THAN_OR_EQUAL

ComparisonOperator GREATER_THAN_OR_EQUAL
Valid values: ">=", "ge"


LESS_THAN

ComparisonOperator LESS_THAN
Valid values: "<", "lt"


LESS_THAN_OR_EQUAL

ComparisonOperator LESS_THAN_OR_EQUAL
Valid values: "<=", "le"


LEXIGRAPHIC_EQUAL

ComparisonOperator LEXIGRAPHIC_EQUAL
Valid value: "%="


LEXIGRAPHIC_NOT_EQUAL

ComparisonOperator LEXIGRAPHIC_NOT_EQUAL
Valid value: "%!"


LEXIGRAPHIC_SUBSTRING

ComparisonOperator LEXIGRAPHIC_SUBSTRING
Valid value: "%<"


NOT_EQUAL

ComparisonOperator NOT_EQUAL
Valid values: "!=", "ne", "<>"


 
Property Detail

compare1

String compare1


compare2

String compare2


compare3

String compare3


 
Constructor Detail

ComparisonOperator

ComparisonOperator(String compare1, String compare2 = null, String compare3 = null)


 
Method Detail

parseString

static def parseString(String string)


toString

String toString()


valueOf

ComparisonOperator valueOf(String name)
Returns the enum constant of this type with the specified name.


values

ComparisonOperator[] values()
Returns an array containing the constants of this enum type, in the order they are declared.


 

Groovy Documentation