Package org.hibernate.sql.ast.tree.from
Interface TableJoin
-
- All Superinterfaces:
SqlAstNode
- All Known Implementing Classes:
TableGroupJoin,TableReferenceJoin
public interface TableJoin extends SqlAstNode
The commonalities betweenTableGroupJoinandTableReferenceJoin.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SqlAstNodegetJoinedNode()SqlAstJoinTypegetJoinType()PredicategetPredicate()booleanisInitialized()-
Methods inherited from interface org.hibernate.sql.ast.tree.SqlAstNode
accept
-
-
-
-
Method Detail
-
getJoinType
SqlAstJoinType getJoinType()
-
getPredicate
Predicate getPredicate()
-
getJoinedNode
SqlAstNode getJoinedNode()
-
isInitialized
boolean isInitialized()
-
-