Enum FilterConstant.FilterType
- java.lang.Object
-
- java.lang.Enum<FilterConstant.FilterType>
-
- org.apache.iotdb.db.mpp.plan.constant.FilterConstant.FilterType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FilterConstant.FilterType>
- Enclosing class:
- FilterConstant
public static enum FilterConstant.FilterType extends java.lang.Enum<FilterConstant.FilterType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EQUALGREATERTHANGREATERTHANOREQUALTOINKW_ANDKW_NOTKW_ORLESSTHANLESSTHANOREQUALTOLIKENOTEQUALREGEXP
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FilterConstant.FilterTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FilterConstant.FilterType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
KW_AND
public static final FilterConstant.FilterType KW_AND
-
KW_OR
public static final FilterConstant.FilterType KW_OR
-
KW_NOT
public static final FilterConstant.FilterType KW_NOT
-
EQUAL
public static final FilterConstant.FilterType EQUAL
-
NOTEQUAL
public static final FilterConstant.FilterType NOTEQUAL
-
LESSTHANOREQUALTO
public static final FilterConstant.FilterType LESSTHANOREQUALTO
-
LESSTHAN
public static final FilterConstant.FilterType LESSTHAN
-
GREATERTHANOREQUALTO
public static final FilterConstant.FilterType GREATERTHANOREQUALTO
-
GREATERTHAN
public static final FilterConstant.FilterType GREATERTHAN
-
IN
public static final FilterConstant.FilterType IN
-
REGEXP
public static final FilterConstant.FilterType REGEXP
-
LIKE
public static final FilterConstant.FilterType LIKE
-
-
Method Detail
-
values
public static FilterConstant.FilterType[] 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 (FilterConstant.FilterType c : FilterConstant.FilterType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FilterConstant.FilterType 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
-
-