public enum ComparisonOp extends Enum<ComparisonOp>
| Enum Constant and Description |
|---|
EQ
Equal to...
|
GE
Greater than or equal to...
|
GT
Greater than...
|
IN
In...
|
LE
Less than or equal to...
|
LT
Less than...
|
NE
Not equal to...
|
OUT
Not in...
|
| Modifier and Type | Method and Description |
|---|---|
static ComparisonOp |
parse(String value) |
String |
toString() |
static ComparisonOp |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComparisonOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComparisonOp EQ
public static final ComparisonOp NE
public static final ComparisonOp GT
public static final ComparisonOp GE
public static final ComparisonOp LT
public static final ComparisonOp LE
public static final ComparisonOp IN
public static final ComparisonOp OUT
public static ComparisonOp[] values()
for (ComparisonOp c : ComparisonOp.values()) System.out.println(c);
public static ComparisonOp 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 static ComparisonOp parse(String value) throws UnknownOperatorException
UnknownOperatorExceptionpublic String toString()
toString in class Enum<ComparisonOp>Copyright © 2011–2014. All rights reserved.