| Package | Description |
|---|---|
| org.apache.paimon.predicate |
| Modifier and Type | Class and Description |
|---|---|
class |
Contains
A
NullFalseLeafBinaryFunction to evaluate filter like '%abc%'. |
class |
EndsWith
A
NullFalseLeafBinaryFunction to evaluate filter like '%abc' or filter like
'_abc'. |
class |
Equal
A
NullFalseLeafBinaryFunction to eval equal. |
class |
GreaterOrEqual
A
NullFalseLeafBinaryFunction to eval greater or equal. |
class |
GreaterThan
A
LeafFunction to eval greater. |
class |
In
A
LeafFunction to eval in. |
class |
IsNotNull
A
NullFalseLeafBinaryFunction to eval is not null. |
class |
IsNull
A
NullFalseLeafBinaryFunction to eval is null. |
class |
LeafUnaryFunction
Function to test a field.
|
class |
LessOrEqual
A
NullFalseLeafBinaryFunction to eval less or equal. |
class |
LessThan
A
NullFalseLeafBinaryFunction to eval less or equal. |
class |
NotEqual
A
NullFalseLeafBinaryFunction to eval not equal. |
class |
NotIn
A
LeafFunction to eval not in. |
class |
NullFalseLeafBinaryFunction
Function to test a field with a literal.
|
class |
StartsWith
A
NullFalseLeafBinaryFunction to evaluate filter like 'abc%' or filter like
'abc_'. |
| Modifier and Type | Method and Description |
|---|---|
LeafFunction |
LeafPredicate.function() |
| Modifier and Type | Method and Description |
|---|---|
Optional<LeafFunction> |
Equal.negate() |
Optional<LeafFunction> |
In.negate() |
Optional<LeafFunction> |
NotIn.negate() |
Optional<LeafFunction> |
Contains.negate() |
Optional<LeafFunction> |
EndsWith.negate() |
Optional<LeafFunction> |
NotEqual.negate() |
Optional<LeafFunction> |
GreaterThan.negate() |
Optional<LeafFunction> |
IsNull.negate() |
Optional<LeafFunction> |
LessThan.negate() |
Optional<LeafFunction> |
StartsWith.negate() |
Optional<LeafFunction> |
GreaterOrEqual.negate() |
Optional<LeafFunction> |
IsNotNull.negate() |
abstract Optional<LeafFunction> |
LeafFunction.negate() |
Optional<LeafFunction> |
LessOrEqual.negate() |
| Constructor and Description |
|---|
LeafPredicate(LeafFunction function,
DataType type,
int fieldIndex,
String fieldName,
List<Object> literals) |
Copyright © 2023–2024 The Apache Software Foundation. All rights reserved.