Class JoinClause
java.lang.Object
io.github.blyznytsiaorg.bibernate.dao.jdbc.dsl.join.JoinClause
Represents a SQL JOIN clause with information about the joined table, the ON condition,
and the type of JOIN (INNER, LEFT, RIGHT, FULL).
- Since:
- 1.0
- Author:
- Blyzhnytsia Team
-
Field Summary
-
Constructor Summary
ConstructorDescriptionJoinClause
(String joinedTable, String onCondition, JoinType joinType) Constructs a new JoinClause with the specified parameters. -
Method Summary
-
Field Details
-
joinedTable
The name of the table to be joined. -
onCondition
The ON condition specifying how the tables should be joined. -
joinType
The type of JOIN (INNER, LEFT, RIGHT, FULL).
-
-
Constructor Details
-
JoinClause
Constructs a new JoinClause with the specified parameters.- Parameters:
joinedTable
- The name of the table to be joined.onCondition
- The ON condition specifying how the tables should be joined.joinType
- The type of JOIN (INNER, LEFT, RIGHT, FULL).
-
-
Method Details