public interface HasCreateJoin4
| Modifier and Type | Method and Description |
|---|---|
<T0,T1,T2,T3,T> |
createJoin(List<Stage<?>> stages,
com.speedment.common.function.QuadFunction<T0,T1,T2,T3,T> constructor,
com.speedment.runtime.config.identifier.TableIdentifier<T0> t0,
com.speedment.runtime.config.identifier.TableIdentifier<T1> t1,
com.speedment.runtime.config.identifier.TableIdentifier<T2> t2,
com.speedment.runtime.config.identifier.TableIdentifier<T3> t3)
Creates and returns a new Join object using the provided
pipeline
whereby elements in the returned Join's Join.stream() method
will be constructed using the provided constructor. |
<T0,T1,T2,T3,T> Join<T> createJoin(List<Stage<?>> stages, com.speedment.common.function.QuadFunction<T0,T1,T2,T3,T> constructor, com.speedment.runtime.config.identifier.TableIdentifier<T0> t0, com.speedment.runtime.config.identifier.TableIdentifier<T1> t1, com.speedment.runtime.config.identifier.TableIdentifier<T2> t2, com.speedment.runtime.config.identifier.TableIdentifier<T3> t3)
pipeline
whereby elements in the returned Join's Join.stream() method
will be constructed using the provided constructor.T0 - entity type of the first tableT1 - entity type of the second tableT2 - entity type of the third tableT3 - entity type of the fourth tableT - stream type in returned Join object's stream methodstages - pipeline with information on the joined tablesconstructor - to be applied by the returned Join objects stream
methodt0 - identifier of the first tablet1 - identifier of the second tablet2 - identifier of the third tablet3 - identifier of the fourth tableNullPointerException - if any of the provided arguments are
nullCopyright © 2019 Speedment, Inc.. All rights reserved.