public static enum Compare.CompareOp extends Enum<Compare.CompareOp>
Enum Constant and Description |
---|
EQ
equal to
|
GE
greater than or equal to
|
GT
greater than
|
LE
lower than or equal to
|
LT
lower than
|
NE
not equal to
|
Modifier and Type | Method and Description |
---|---|
String |
getSymbol() |
static Compare.CompareOp |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Compare.CompareOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Compare.CompareOp EQ
public static final Compare.CompareOp NE
public static final Compare.CompareOp LT
public static final Compare.CompareOp LE
public static final Compare.CompareOp GE
public static final Compare.CompareOp GT
public static Compare.CompareOp[] values()
for (Compare.CompareOp c : Compare.CompareOp.values()) System.out.println(c);
public static Compare.CompareOp 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 getSymbol()
Copyright © 2015-2020 Eclipse Foundation. All Rights Reserved.