Interface IBinaryExpression
-
- All Superinterfaces:
IExpression,java.io.Serializable
- All Known Implementing Classes:
BinaryExpression,BinaryExpression.AndExpression,BinaryExpression.OrExpression
public interface IBinaryExpression extends IExpression
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IExpressiongetLeft()IExpressiongetRight()voidsetLeft(IExpression leftExpression)voidsetRight(IExpression rightExpression)-
Methods inherited from interface org.apache.iotdb.tsfile.read.expression.IExpression
clone, getType, serialize
-
-
-
-
Method Detail
-
getLeft
IExpression getLeft()
-
getRight
IExpression getRight()
-
setLeft
void setLeft(IExpression leftExpression)
-
setRight
void setRight(IExpression rightExpression)
-
-