Uses of Interface
org.apache.parquet.filter2.predicate.Operators.SupportsEqNotEq
-
Packages that use Operators.SupportsEqNotEq Package Description org.apache.parquet.filter2.predicate -
-
Uses of Operators.SupportsEqNotEq in org.apache.parquet.filter2.predicate
Subinterfaces of Operators.SupportsEqNotEq in org.apache.parquet.filter2.predicate Modifier and Type Interface Description static interfaceOperators.SupportsLtGtClasses in org.apache.parquet.filter2.predicate that implement Operators.SupportsEqNotEq Modifier and Type Class Description static classOperators.BinaryColumnstatic classOperators.BooleanColumnstatic classOperators.DoubleColumnstatic classOperators.FloatColumnstatic classOperators.IntColumnstatic classOperators.LongColumnMethods in org.apache.parquet.filter2.predicate with type parameters of type Operators.SupportsEqNotEq Modifier and Type Method Description static <T extends Comparable<T>,C extends Operators.Column<T> & Operators.SupportsEqNotEq>
Operators.Eq<T>FilterApi. eq(C column, T value)Keeps records if their value is equal to the provided value.static <T extends Comparable<T>,C extends Operators.Column<T> & Operators.SupportsEqNotEq>
Operators.In<T>FilterApi. in(C column, Set<T> values)Keeps records if their value is in the provided values.static <T extends Comparable<T>,C extends Operators.Column<T> & Operators.SupportsEqNotEq>
Operators.NotEq<T>FilterApi. notEq(C column, T value)Keeps records if their value is not equal to the provided value.static <T extends Comparable<T>,C extends Operators.Column<T> & Operators.SupportsEqNotEq>
Operators.NotIn<T>FilterApi. notIn(C column, Set<T> values)Keeps records if their value is not in the provided values.
-