Package org.apache.iceberg.expressions
Class True
- java.lang.Object
-
- org.apache.iceberg.expressions.True
-
- All Implemented Interfaces:
java.io.Serializable
,Expression
public class True extends java.lang.Object implements Expression
Anexpression
that is always true.- 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 Expression
negate()
Returns the negation of this expression, equivalent to not(this).Expression.Operation
op()
Returns the operation for an expression node.java.lang.String
toString()
-
-
-
Method Detail
-
op
public Expression.Operation op()
Description copied from interface:Expression
Returns the operation for an expression node.- Specified by:
op
in interfaceExpression
-
negate
public Expression negate()
Description copied from interface:Expression
Returns the negation of this expression, equivalent to not(this).- Specified by:
negate
in interfaceExpression
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-