Uses of Class
org.apache.iotdb.tsfile.read.filter.factory.FilterType
-
Packages that use FilterType Package Description org.apache.iotdb.tsfile.read.filter.basic org.apache.iotdb.tsfile.read.filter.factory org.apache.iotdb.tsfile.read.filter.operator -
-
Uses of FilterType in org.apache.iotdb.tsfile.read.filter.basic
Fields in org.apache.iotdb.tsfile.read.filter.basic declared as FilterType Modifier and Type Field Description protected FilterTypeUnaryFilter. filterTypeMethods in org.apache.iotdb.tsfile.read.filter.basic that return FilterType Modifier and Type Method Description FilterTypeUnaryFilter. getFilterType()Constructors in org.apache.iotdb.tsfile.read.filter.basic with parameters of type FilterType Constructor Description UnaryFilter(T value, FilterType filterType) -
Uses of FilterType in org.apache.iotdb.tsfile.read.filter.factory
Methods in org.apache.iotdb.tsfile.read.filter.factory that return FilterType Modifier and Type Method Description static FilterTypeFilterType. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FilterType[]FilterType. values()Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of FilterType in org.apache.iotdb.tsfile.read.filter.operator
Fields in org.apache.iotdb.tsfile.read.filter.operator declared as FilterType Modifier and Type Field Description protected FilterTypeBetween. filterTypeprotected FilterTypeIn. filterTypeprotected FilterTypeLike. filterTypeprotected FilterTypeRegexp. filterTypeConstructors in org.apache.iotdb.tsfile.read.filter.operator with parameters of type FilterType Constructor Description Between(T value1, T value2, FilterType filterType, boolean not)Eq(T value, FilterType filterType)Gt(T value, FilterType filterType)GtEq(T value, FilterType filterType)In(java.util.Set<T> values, FilterType filterType, boolean not)Like(java.lang.String value, FilterType filterType, boolean not)The main idea of this part comes from https://codereview.stackexchange.com/questions/36861/convert-sql-like-to-regex/36864Lt(T value, FilterType filterType)LtEq(T value, FilterType filterType)NotEq(T value, FilterType filterType)Regexp(java.lang.String value, FilterType filterType, boolean not)
-