public enum ExpressionType extends Enum<ExpressionType>
| Enum Constant and Description |
|---|
AND
Represent the relationship between the left expression and the right expression is AND
|
GLOBAL_TIME
Represents that the expression is a leaf node in the expression tree and the type is time
filtering
|
OR
Represent the relationship between the left expression and the right expression is OR
|
SERIES
Represents that the expression is a leaf node in the expression tree and the type is value
filtering
|
TRUE
This type is used in the pruning process of expression tree in the distributed reading process.
|
| Modifier and Type | Method and Description |
|---|---|
static ExpressionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExpressionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExpressionType AND
public static final ExpressionType OR
public static final ExpressionType SERIES
public static final ExpressionType GLOBAL_TIME
public static final ExpressionType TRUE
public static ExpressionType[] values()
for (ExpressionType c : ExpressionType.values()) System.out.println(c);
public static ExpressionType 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 © 2022 The Apache Software Foundation. All rights reserved.