Class SQLLeftJoinExpressionImpl
- java.lang.Object
-
- it.unibz.inf.ontop.generation.algebra.impl.SQLLeftJoinExpressionImpl
-
- All Implemented Interfaces:
BinaryJoinExpression,SQLExpression,SQLLeftJoinExpression
public class SQLLeftJoinExpressionImpl extends Object implements SQLLeftJoinExpression
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> TacceptVisitor(SQLRelationVisitor<T> visitor)Optional<ImmutableExpression>getFilterCondition()SQLExpressiongetLeft()SQLExpressiongetRight()it.unibz.inf.ontop.com.google.common.collect.ImmutableList<? extends SQLExpression>getSubExpressions()
-
-
-
Method Detail
-
getLeft
public SQLExpression getLeft()
- Specified by:
getLeftin interfaceBinaryJoinExpression
-
getRight
public SQLExpression getRight()
- Specified by:
getRightin interfaceBinaryJoinExpression
-
getFilterCondition
public Optional<ImmutableExpression> getFilterCondition()
- Specified by:
getFilterConditionin interfaceBinaryJoinExpression
-
acceptVisitor
public <T> T acceptVisitor(SQLRelationVisitor<T> visitor)
- Specified by:
acceptVisitorin interfaceSQLExpression
-
getSubExpressions
public it.unibz.inf.ontop.com.google.common.collect.ImmutableList<? extends SQLExpression> getSubExpressions()
- Specified by:
getSubExpressionsin interfaceBinaryJoinExpression
-
-