Interface BinaryJoinExpression
-
- All Superinterfaces:
SQLExpression
- All Known Subinterfaces:
SQLInnerJoinExpression,SQLLeftJoinExpression
- All Known Implementing Classes:
SQLInnerJoinExpressionImpl,SQLLeftJoinExpressionImpl
public interface BinaryJoinExpression extends SQLExpression
Abstraction for LeftJoinRelation and explicit InnerJoinRelation
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Optional<ImmutableExpression>getFilterCondition()SQLExpressiongetLeft()SQLExpressiongetRight()it.unibz.inf.ontop.com.google.common.collect.ImmutableList<? extends SQLExpression>getSubExpressions()-
Methods inherited from interface it.unibz.inf.ontop.generation.algebra.SQLExpression
acceptVisitor
-
-
-
-
Method Detail
-
getLeft
SQLExpression getLeft()
-
getRight
SQLExpression getRight()
-
getFilterCondition
Optional<ImmutableExpression> getFilterCondition()
-
getSubExpressions
it.unibz.inf.ontop.com.google.common.collect.ImmutableList<? extends SQLExpression> getSubExpressions()
-
-