Uses of Class
io.github.torand.fastersql.join.Join
Packages that use Join
Package
Description
Provides classes representing join clauses.
Provides classes representing the database model.
Provides classes and interfaces related to statements.
-
Uses of Join in io.github.torand.fastersql.join
Methods in io.github.torand.fastersql.join that return JoinModifier and TypeMethodDescriptionCreates a nested JOIN clause by combining this JOIN clause with the specified JOIN clause.Join.leftOuter()
Specifies that this is a LEFT OUTER JOIN clause.Join.rightOuter()
Specifies that this is a RIGHT OUTER JOIN clause.Methods in io.github.torand.fastersql.join with parameters of type Join -
Uses of Join in io.github.torand.fastersql.model
Methods in io.github.torand.fastersql.model that return Join -
Uses of Join in io.github.torand.fastersql.statement
Methods in io.github.torand.fastersql.statement with parameters of type JoinModifier and TypeMethodDescriptionAdds one or more JOIN clauses.SelectStatement.leftOuterJoin
(Join join) Adds a LEFT OUTER JOIN clause.SelectStatement.rightOuterJoin
(Join join) Adds a RIGHT OUTER JOIN clause.