| Package | Description |
|---|---|
| org.apache.parquet.filter2.predicate |
| Modifier and Type | Class and Description |
|---|---|
static class |
Operators.BinaryColumn |
static class |
Operators.DoubleColumn |
static class |
Operators.FloatColumn |
static class |
Operators.IntColumn |
static class |
Operators.LongColumn |
| Modifier and Type | Method and Description |
|---|---|
static <T extends Comparable<T>,C extends Operators.Column<T> & Operators.SupportsLtGt> |
FilterApi.gt(C column,
T value)
Keeps records if their value is greater than (but not equal to) the provided value.
|
static <T extends Comparable<T>,C extends Operators.Column<T> & Operators.SupportsLtGt> |
FilterApi.gtEq(C column,
T value)
Keeps records if their value is greater than or equal to the provided value.
|
static <T extends Comparable<T>,C extends Operators.Column<T> & Operators.SupportsLtGt> |
FilterApi.lt(C column,
T value)
Keeps records if their value is less than (but not equal to) the provided value.
|
static <T extends Comparable<T>,C extends Operators.Column<T> & Operators.SupportsLtGt> |
FilterApi.ltEq(C column,
T value)
Keeps records if their value is less than or equal to the provided value.
|
Copyright © 2024 The Apache Software Foundation. All rights reserved.