Package org.apache.iceberg.expressions
Class Or
- java.lang.Object
 - 
- org.apache.iceberg.expressions.Or
 
 
- 
- All Implemented Interfaces:
 java.io.Serializable,Expression
public class Or extends java.lang.Object implements Expression
- 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 Expressionleft()Expressionnegate()Returns the negation of this expression, equivalent to not(this).Expression.Operationop()Returns the operation for an expression node.Expressionright()java.lang.StringtoString() 
 - 
 
- 
- 
Method Detail
- 
left
public Expression left()
 
- 
right
public Expression right()
 
- 
op
public Expression.Operation op()
Description copied from interface:ExpressionReturns the operation for an expression node.- Specified by:
 opin interfaceExpression
 
- 
negate
public Expression negate()
Description copied from interface:ExpressionReturns the negation of this expression, equivalent to not(this).- Specified by:
 negatein interfaceExpression
 
- 
toString
public java.lang.String toString()
- Overrides:
 toStringin classjava.lang.Object
 
 - 
 
 -