public enum RelationalOperator extends Enum<RelationalOperator>
| Modifier and Type | Method and Description |
|---|---|
static RelationalOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RelationalOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RelationalOperator LT
public static final RelationalOperator LE
public static final RelationalOperator EQ
public static final RelationalOperator GE
public static final RelationalOperator GT
public static RelationalOperator[] values()
for (RelationalOperator c : RelationalOperator.values()) System.out.println(c);
public static RelationalOperator 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 nullCopyright © 2020. All Rights Reserved.