Package org.apache.iceberg.expressions
Class BoundLiteralPredicate<T>
- java.lang.Object
-
- org.apache.iceberg.expressions.Predicate<T,BoundTerm<T>>
-
- org.apache.iceberg.expressions.BoundPredicate<T>
-
- org.apache.iceberg.expressions.BoundLiteralPredicate<T>
-
- All Implemented Interfaces:
java.io.Serializable
,Bound<java.lang.Boolean>
,Expression
public class BoundLiteralPredicate<T> extends BoundPredicate<T>
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.iceberg.expressions.Expression
Expression.Operation
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BoundLiteralPredicate<T>
asLiteralPredicate()
boolean
isLiteralPredicate()
Literal<T>
literal()
Expression
negate()
Returns the negation of this expression, equivalent to not(this).boolean
test(T value)
java.lang.String
toString()
-
Methods inherited from class org.apache.iceberg.expressions.BoundPredicate
asSetPredicate, asUnaryPredicate, eval, isSetPredicate, isUnaryPredicate, ref, test
-
-
-
-
Method Detail
-
negate
public Expression negate()
Description copied from interface:Expression
Returns the negation of this expression, equivalent to not(this).
-
isLiteralPredicate
public boolean isLiteralPredicate()
- Overrides:
isLiteralPredicate
in classBoundPredicate<T>
-
asLiteralPredicate
public BoundLiteralPredicate<T> asLiteralPredicate()
- Overrides:
asLiteralPredicate
in classBoundPredicate<T>
-
test
public boolean test(T value)
- Specified by:
test
in classBoundPredicate<T>
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-