Uses of Interface
org.apache.parquet.filter.UnboundRecordFilter
-
Packages that use UnboundRecordFilter Package Description org.apache.parquet.filter org.apache.parquet.filter2.compat org.apache.parquet.io -
-
Uses of UnboundRecordFilter in org.apache.parquet.filter
Methods in org.apache.parquet.filter that return UnboundRecordFilter Modifier and Type Method Description static UnboundRecordFilterAndRecordFilter. and(UnboundRecordFilter filter1, UnboundRecordFilter filter2)Returns builder for creating an and filter.static UnboundRecordFilterColumnRecordFilter. column(String columnPath, ColumnPredicates.Predicate predicate)Factory method for record filter which applies the supplied predicate to the specified column.static UnboundRecordFilterNotRecordFilter. not(UnboundRecordFilter filter)Returns builder for creating an and filter.static UnboundRecordFilterOrRecordFilter. or(UnboundRecordFilter filter1, UnboundRecordFilter filter2)Returns builder for creating an and filter.static UnboundRecordFilterPagedRecordFilter. page(long startPos, long pageSize)Returns builder for creating a paged query.Methods in org.apache.parquet.filter with parameters of type UnboundRecordFilter Modifier and Type Method Description static UnboundRecordFilterAndRecordFilter. and(UnboundRecordFilter filter1, UnboundRecordFilter filter2)Returns builder for creating an and filter.static UnboundRecordFilterNotRecordFilter. not(UnboundRecordFilter filter)Returns builder for creating an and filter.static UnboundRecordFilterOrRecordFilter. or(UnboundRecordFilter filter1, UnboundRecordFilter filter2)Returns builder for creating an and filter. -
Uses of UnboundRecordFilter in org.apache.parquet.filter2.compat
Methods in org.apache.parquet.filter2.compat that return UnboundRecordFilter Modifier and Type Method Description UnboundRecordFilterFilterCompat.UnboundRecordFilterCompat. getUnboundRecordFilter()Methods in org.apache.parquet.filter2.compat with parameters of type UnboundRecordFilter Modifier and Type Method Description static FilterCompat.FilterFilterCompat. get(UnboundRecordFilter unboundRecordFilter)Given an UnboundRecordFilter, return a Filter that wraps it.static FilterCompat.FilterFilterCompat. get(FilterPredicate filterPredicate, UnboundRecordFilter unboundRecordFilter)Given either a FilterPredicate or the class of an UnboundRecordFilter, or neither (but not both) return a Filter that wraps whichever was provided. -
Uses of UnboundRecordFilter in org.apache.parquet.io
Methods in org.apache.parquet.io with parameters of type UnboundRecordFilter Modifier and Type Method Description <T> RecordReader<T>MessageColumnIO. getRecordReader(PageReadStore columns, RecordMaterializer<T> recordMaterializer, UnboundRecordFilter filter)Deprecated.use getRecordReader(PageReadStore, RecordMaterializer, Filter)
-