public static enum ComparisonBinaryExpression.Operator extends Enum<ComparisonBinaryExpression.Operator>
Enum Constant and Description |
---|
EQUAL |
GREATER_EQUAL |
GREATER_THAN |
LESS_EQUAL |
LESS_THAN |
NOT_EQUAL |
Modifier and Type | Method and Description |
---|---|
static ComparisonBinaryExpression.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComparisonBinaryExpression.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComparisonBinaryExpression.Operator EQUAL
public static final ComparisonBinaryExpression.Operator NOT_EQUAL
public static final ComparisonBinaryExpression.Operator LESS_THAN
public static final ComparisonBinaryExpression.Operator LESS_EQUAL
public static final ComparisonBinaryExpression.Operator GREATER_THAN
public static final ComparisonBinaryExpression.Operator GREATER_EQUAL
public static ComparisonBinaryExpression.Operator[] values()
for (ComparisonBinaryExpression.Operator c : ComparisonBinaryExpression.Operator.values()) System.out.println(c);
public static ComparisonBinaryExpression.Operator 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 © 2024 PingCAP. All rights reserved.