public enum BinaryComparisonOperator extends Enum<BinaryComparisonOperator>
BinaryComparisonExpression
Enum Constant and Description |
---|
EQUALS
Equality comparison
|
GREATER_THAN
Greater than comparison
|
GREATER_THAN_OR_EQUAL_TO
Greater than or equal comparison
|
LESS_THAN
Less than comparison
|
LESS_THAN_OR_EQUAL_TO
Less than or equal comparison
|
NOT_EQUAL_TO
Inequality comparison
|
Modifier and Type | Method and Description |
---|---|
static BinaryComparisonOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BinaryComparisonOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BinaryComparisonOperator EQUALS
public static final BinaryComparisonOperator NOT_EQUAL_TO
public static final BinaryComparisonOperator GREATER_THAN
public static final BinaryComparisonOperator GREATER_THAN_OR_EQUAL_TO
public static final BinaryComparisonOperator LESS_THAN
public static final BinaryComparisonOperator LESS_THAN_OR_EQUAL_TO
public static BinaryComparisonOperator[] values()
for (BinaryComparisonOperator c : BinaryComparisonOperator.values()) System.out.println(c);
public static BinaryComparisonOperator 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 © 2018. All rights reserved.