@Namespace(value="arrow::compute") public static enum arrow.CompareOperator extends Enum<arrow.CompareOperator>
| Enum Constant and Description |
|---|
EQUAL |
GREATER |
GREATER_EQUAL |
LESS |
LESS_EQUAL |
NOT_EQUAL |
| Modifier and Type | Field and Description |
|---|---|
byte |
value |
| Modifier and Type | Method and Description |
|---|---|
arrow.CompareOperator |
intern() |
String |
toString() |
static arrow.CompareOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static arrow.CompareOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final arrow.CompareOperator EQUAL
public static final arrow.CompareOperator NOT_EQUAL
public static final arrow.CompareOperator GREATER
public static final arrow.CompareOperator GREATER_EQUAL
public static final arrow.CompareOperator LESS
public static final arrow.CompareOperator LESS_EQUAL
public static arrow.CompareOperator[] values()
for (arrow.CompareOperator c : arrow.CompareOperator.values()) System.out.println(c);
public static arrow.CompareOperator 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 arrow.CompareOperator intern()
public String toString()
toString in class Enum<arrow.CompareOperator>Copyright © 2021. All rights reserved.