Package org.hibernate.sql.ast.tree.from
Class TableReferenceJoin
- java.lang.Object
-
- org.hibernate.sql.ast.tree.from.TableReferenceJoin
-
- All Implemented Interfaces:
TableJoin,PredicateContainer,SqlAstNode
public class TableReferenceJoin extends Object implements TableJoin, PredicateContainer
Represents a join to aTableReference; roughly equivalent to a SQL join.
-
-
Constructor Summary
Constructors Constructor Description TableReferenceJoin(boolean innerJoin, NamedTableReference joinedTableBinding, Predicate predicate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(SqlAstWalker sqlTreeWalker)voidapplyPredicate(Predicate newPredicate)Apply a predicate to this containerSqlAstNodegetJoinedNode()NamedTableReferencegetJoinedTableReference()SqlAstJoinTypegetJoinType()PredicategetPredicate()booleanisInitialized()StringtoString()
-
-
-
Constructor Detail
-
TableReferenceJoin
public TableReferenceJoin(boolean innerJoin, NamedTableReference joinedTableBinding, Predicate predicate)
-
-
Method Detail
-
getJoinType
public SqlAstJoinType getJoinType()
- Specified by:
getJoinTypein interfaceTableJoin
-
getJoinedTableReference
public NamedTableReference getJoinedTableReference()
-
getJoinedNode
public SqlAstNode getJoinedNode()
- Specified by:
getJoinedNodein interfaceTableJoin
-
getPredicate
public Predicate getPredicate()
- Specified by:
getPredicatein interfaceTableJoin
-
accept
public void accept(SqlAstWalker sqlTreeWalker)
- Specified by:
acceptin interfaceSqlAstNode
-
isInitialized
public boolean isInitialized()
- Specified by:
isInitializedin interfaceTableJoin
-
applyPredicate
public void applyPredicate(Predicate newPredicate)
Description copied from interface:PredicateContainerApply a predicate to this container- Specified by:
applyPredicatein interfacePredicateContainer
-
-