T0 - the first entity typeT1 - the second entity typeT2 - the third entity typepublic interface JoinBuilder3<T0,T1,T2> extends HasJoins<JoinBuilder3.AfterJoin<T0,T1,T2,?>,JoinBuilder4<T0,T1,T2,?>>, HasWhere<T2,JoinBuilder3<T0,T1,T2>>, HasDefaultBuild<com.speedment.common.tuple.nullable.Tuple3OfNullables<T0,T1,T2>>
| Modifier and Type | Interface and Description |
|---|---|
static interface |
JoinBuilder3.AfterJoin<T0,T1,T2,T3> |
| Modifier and Type | Method and Description |
|---|---|
default Join<com.speedment.common.tuple.nullable.Tuple3OfNullables<T0,T1,T2>> |
build()
Creates and returns a new Join object where elements in the Join object's
stream method is of a default
Tuple type. |
<T> Join<T> |
build(com.speedment.common.function.TriFunction<T0,T1,T2,T> constructor)
Creates and returns a new Join object where elements in the Join
object's stream method is created using the provided
constructor. |
<T3> JoinBuilder4<T0,T1,T2,T3> |
crossJoin(com.speedment.runtime.config.identifier.TableIdentifier<T3> joinedTable)
Adds the provided
joinedTable to the collection of joined tables. |
<T3> JoinBuilder3.AfterJoin<T0,T1,T2,T3> |
innerJoinOn(com.speedment.runtime.field.trait.HasComparableOperators<T3,?> joinedField)
Adds the provided
joinedField to the collection of joined
column/tables. |
<T3> JoinBuilder3.AfterJoin<T0,T1,T2,T3> |
leftJoinOn(com.speedment.runtime.field.trait.HasComparableOperators<T3,?> joinedField)
Adds the provided
joinedField to the collection of joined
column/tables. |
<T3> JoinBuilder3.AfterJoin<T0,T1,T2,T3> |
rightJoinOn(com.speedment.runtime.field.trait.HasComparableOperators<T3,?> joinedField)
Adds the provided
joinedField to the collection of joined
column/tables. |
<T3> JoinBuilder3.AfterJoin<T0,T1,T2,T3> innerJoinOn(com.speedment.runtime.field.trait.HasComparableOperators<T3,?> joinedField)
HasJoinsjoinedField to the collection of joined
column/tables. Elements are joined from the table of the provided
joinedField using an INNER JOIN whereby rows from two
tables are present only if there is a match between the joining columns.
Thus, rows that do not have matches in the joining columns will not be
present in the result.innerJoinOn in interface HasJoins<JoinBuilder3.AfterJoin<T0,T1,T2,?>,JoinBuilder4<T0,T1,T2,?>>T3 - entity typejoinedField - to add to the current join builderjoinedField is added<T3> JoinBuilder3.AfterJoin<T0,T1,T2,T3> leftJoinOn(com.speedment.runtime.field.trait.HasComparableOperators<T3,?> joinedField)
HasJoinsjoinedField to the collection of joined
column/tables. Elements are joined from the table of the provided
joinedField using an LEFT JOIN whereby rows from two
tables are present either if there is a match between the joining columns
or for each row from previously existing table(s).
Unmatched rows will have entities from the table in the given
joinedField set to null
leftJoinOn in interface HasJoins<JoinBuilder3.AfterJoin<T0,T1,T2,?>,JoinBuilder4<T0,T1,T2,?>>T3 - entity typejoinedField - to add to the current join builderjoinedField is added<T3> JoinBuilder3.AfterJoin<T0,T1,T2,T3> rightJoinOn(com.speedment.runtime.field.trait.HasComparableOperators<T3,?> joinedField)
HasJoinsjoinedField to the collection of joined
column/tables. Elements are joined from the table of the provided
joinedField using an RIGHT JOIN whereby rows from two
tables are present either if there is a match between the joining columns
or for each row from the table for the provided joinedField.
Unmatched rows will have entities from the table in the given
joinedField set to null
rightJoinOn in interface HasJoins<JoinBuilder3.AfterJoin<T0,T1,T2,?>,JoinBuilder4<T0,T1,T2,?>>T3 - entity typejoinedField - to add to the current join builderjoinedField is added<T3> JoinBuilder4<T0,T1,T2,T3> crossJoin(com.speedment.runtime.config.identifier.TableIdentifier<T3> joinedTable)
HasJoinsjoinedTable to the collection of joined tables.
Elements are joined from the table of the provided joinedTable
using an CROSS JOIN whereby all combination of rows using all
tables(s) are produced.crossJoin in interface HasJoins<JoinBuilder3.AfterJoin<T0,T1,T2,?>,JoinBuilder4<T0,T1,T2,?>>T3 - entity typejoinedTable - to add to the current join builderjoinedField is addeddefault Join<com.speedment.common.tuple.nullable.Tuple3OfNullables<T0,T1,T2>> build()
HasDefaultBuildTuple type.build in interface HasDefaultBuild<com.speedment.common.tuple.nullable.Tuple3OfNullables<T0,T1,T2>>Tuple type<T> Join<T> build(com.speedment.common.function.TriFunction<T0,T1,T2,T> constructor)
constructor.T - the type of element in the Join object's stream
method.constructor - to use to create stream elements.Tuple typeNullPointerException - if the provided constructor is
nullCopyright © 2019 Speedment, Inc.. All rights reserved.