Enum ExpressionType
- java.lang.Object
-
- java.lang.Enum<ExpressionType>
-
- org.apache.iotdb.db.mpp.plan.expression.ExpressionType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ExpressionType>
public enum ExpressionType extends java.lang.Enum<ExpressionType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADDITIONBETWEENCONSTANTDIVISIONEQUAL_TOFUNCTIONGREATER_EQUALGREATER_THANINIS_NULLLESS_EQUALLESS_THANLIKELOGIC_ANDLOGIC_NOTLOGIC_ORMODULOMULTIPLICATIONNEGATIONNON_EQUALREGEXPSUBTRACTIONTIMESERIESTIMESTAMP
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description shortgetExpressionTypeInShortEnum()shortgetPriority()static ExpressionTypevalueOf(java.lang.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.
-
-
-
Enum Constant Detail
-
CONSTANT
public static final ExpressionType CONSTANT
-
TIMESTAMP
public static final ExpressionType TIMESTAMP
-
TIMESERIES
public static final ExpressionType TIMESERIES
-
FUNCTION
public static final ExpressionType FUNCTION
-
NEGATION
public static final ExpressionType NEGATION
-
LOGIC_NOT
public static final ExpressionType LOGIC_NOT
-
MULTIPLICATION
public static final ExpressionType MULTIPLICATION
-
DIVISION
public static final ExpressionType DIVISION
-
MODULO
public static final ExpressionType MODULO
-
ADDITION
public static final ExpressionType ADDITION
-
SUBTRACTION
public static final ExpressionType SUBTRACTION
-
EQUAL_TO
public static final ExpressionType EQUAL_TO
-
NON_EQUAL
public static final ExpressionType NON_EQUAL
-
GREATER_EQUAL
public static final ExpressionType GREATER_EQUAL
-
GREATER_THAN
public static final ExpressionType GREATER_THAN
-
LESS_EQUAL
public static final ExpressionType LESS_EQUAL
-
LESS_THAN
public static final ExpressionType LESS_THAN
-
LIKE
public static final ExpressionType LIKE
-
REGEXP
public static final ExpressionType REGEXP
-
IS_NULL
public static final ExpressionType IS_NULL
-
BETWEEN
public static final ExpressionType BETWEEN
-
IN
public static final ExpressionType IN
-
LOGIC_AND
public static final ExpressionType LOGIC_AND
-
LOGIC_OR
public static final ExpressionType LOGIC_OR
-
-
Method Detail
-
values
public static ExpressionType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ExpressionType c : ExpressionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExpressionType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getExpressionTypeInShortEnum
public short getExpressionTypeInShortEnum()
-
getPriority
public short getPriority()
-
-