[jOOQ/jOOQ#10775] Finalise new Rows utility
- Rename methods to toRowList() and toRowArray() - Added Javadoc links to relevant places: - InsertValuesStep[N].valuesOfRows(Row[N]...) methods - Row[N].in(Row[N]...) and notIn() methods - DSL.values(Row[N]...) constructors
This commit is contained in:
parent
1c9d4e80db
commit
1b8c1c5587
@ -38,6 +38,7 @@
|
||||
package org.jooq;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
@ -99,6 +100,8 @@ public interface InsertValuesStep1<R extends Record, T1> extends InsertOnDuplica
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowArray(Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
@ -110,6 +113,8 @@ public interface InsertValuesStep1<R extends Record, T1> extends InsertOnDuplica
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowList(Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
|
||||
@ -38,6 +38,7 @@
|
||||
package org.jooq;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
@ -99,6 +100,8 @@ public interface InsertValuesStep10<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
@ -110,6 +113,8 @@ public interface InsertValuesStep10<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
|
||||
@ -38,6 +38,7 @@
|
||||
package org.jooq;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
@ -99,6 +100,8 @@ public interface InsertValuesStep11<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
@ -110,6 +113,8 @@ public interface InsertValuesStep11<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
|
||||
@ -38,6 +38,7 @@
|
||||
package org.jooq;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
@ -99,6 +100,8 @@ public interface InsertValuesStep12<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
@ -110,6 +113,8 @@ public interface InsertValuesStep12<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
|
||||
@ -38,6 +38,7 @@
|
||||
package org.jooq;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
@ -99,6 +100,8 @@ public interface InsertValuesStep13<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
@ -110,6 +113,8 @@ public interface InsertValuesStep13<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
|
||||
@ -38,6 +38,7 @@
|
||||
package org.jooq;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
@ -99,6 +100,8 @@ public interface InsertValuesStep14<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
@ -110,6 +113,8 @@ public interface InsertValuesStep14<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
|
||||
@ -38,6 +38,7 @@
|
||||
package org.jooq;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
@ -99,6 +100,8 @@ public interface InsertValuesStep15<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
@ -110,6 +113,8 @@ public interface InsertValuesStep15<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
|
||||
@ -38,6 +38,7 @@
|
||||
package org.jooq;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
@ -99,6 +100,8 @@ public interface InsertValuesStep16<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
@ -110,6 +113,8 @@ public interface InsertValuesStep16<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
|
||||
@ -38,6 +38,7 @@
|
||||
package org.jooq;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
@ -99,6 +100,8 @@ public interface InsertValuesStep17<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
@ -110,6 +113,8 @@ public interface InsertValuesStep17<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
|
||||
@ -38,6 +38,7 @@
|
||||
package org.jooq;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
@ -99,6 +100,8 @@ public interface InsertValuesStep18<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
@ -110,6 +113,8 @@ public interface InsertValuesStep18<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
|
||||
@ -38,6 +38,7 @@
|
||||
package org.jooq;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
@ -99,6 +100,8 @@ public interface InsertValuesStep19<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
@ -110,6 +113,8 @@ public interface InsertValuesStep19<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
|
||||
@ -38,6 +38,7 @@
|
||||
package org.jooq;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
@ -99,6 +100,8 @@ public interface InsertValuesStep2<R extends Record, T1, T2> extends InsertOnDup
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
@ -110,6 +113,8 @@ public interface InsertValuesStep2<R extends Record, T1, T2> extends InsertOnDup
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
|
||||
@ -38,6 +38,7 @@
|
||||
package org.jooq;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
@ -99,6 +100,8 @@ public interface InsertValuesStep20<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
@ -110,6 +113,8 @@ public interface InsertValuesStep20<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
|
||||
@ -38,6 +38,7 @@
|
||||
package org.jooq;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
@ -99,6 +100,8 @@ public interface InsertValuesStep21<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
@ -110,6 +113,8 @@ public interface InsertValuesStep21<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
|
||||
@ -38,6 +38,7 @@
|
||||
package org.jooq;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
@ -99,6 +100,8 @@ public interface InsertValuesStep22<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
@ -110,6 +113,8 @@ public interface InsertValuesStep22<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
|
||||
@ -38,6 +38,7 @@
|
||||
package org.jooq;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
@ -99,6 +100,8 @@ public interface InsertValuesStep3<R extends Record, T1, T2, T3> extends InsertO
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
@ -110,6 +113,8 @@ public interface InsertValuesStep3<R extends Record, T1, T2, T3> extends InsertO
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
|
||||
@ -38,6 +38,7 @@
|
||||
package org.jooq;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
@ -99,6 +100,8 @@ public interface InsertValuesStep4<R extends Record, T1, T2, T3, T4> extends Ins
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
@ -110,6 +113,8 @@ public interface InsertValuesStep4<R extends Record, T1, T2, T3, T4> extends Ins
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
|
||||
@ -38,6 +38,7 @@
|
||||
package org.jooq;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
@ -99,6 +100,8 @@ public interface InsertValuesStep5<R extends Record, T1, T2, T3, T4, T5> extends
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
@ -110,6 +113,8 @@ public interface InsertValuesStep5<R extends Record, T1, T2, T3, T4, T5> extends
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
|
||||
@ -38,6 +38,7 @@
|
||||
package org.jooq;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
@ -99,6 +100,8 @@ public interface InsertValuesStep6<R extends Record, T1, T2, T3, T4, T5, T6> ext
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
@ -110,6 +113,8 @@ public interface InsertValuesStep6<R extends Record, T1, T2, T3, T4, T5, T6> ext
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
|
||||
@ -38,6 +38,7 @@
|
||||
package org.jooq;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
@ -99,6 +100,8 @@ public interface InsertValuesStep7<R extends Record, T1, T2, T3, T4, T5, T6, T7>
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
@ -110,6 +113,8 @@ public interface InsertValuesStep7<R extends Record, T1, T2, T3, T4, T5, T6, T7>
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
|
||||
@ -38,6 +38,7 @@
|
||||
package org.jooq;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
@ -99,6 +100,8 @@ public interface InsertValuesStep8<R extends Record, T1, T2, T3, T4, T5, T6, T7,
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
@ -110,6 +113,8 @@ public interface InsertValuesStep8<R extends Record, T1, T2, T3, T4, T5, T6, T7,
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
|
||||
@ -38,6 +38,7 @@
|
||||
package org.jooq;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
@ -99,6 +100,8 @@ public interface InsertValuesStep9<R extends Record, T1, T2, T3, T4, T5, T6, T7,
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
@ -110,6 +113,8 @@ public interface InsertValuesStep9<R extends Record, T1, T2, T3, T4, T5, T6, T7,
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
|
||||
@ -38,6 +38,7 @@
|
||||
package org.jooq;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
@ -99,6 +100,8 @@ public interface InsertValuesStepN<R extends Record> extends InsertOnDuplicateSt
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
@ -109,6 +112,8 @@ public interface InsertValuesStepN<R extends Record> extends InsertOnDuplicateSt
|
||||
* <p>
|
||||
* This is equivalent to calling the other values clauses multiple times, but
|
||||
* allows for dynamic construction of row arrays.
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function)
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
|
||||
@ -40,6 +40,7 @@ package org.jooq;
|
||||
import static org.jooq.SQLDialect.*;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jooq.conf.Settings;
|
||||
import org.jooq.impl.DSL;
|
||||
@ -1366,6 +1367,8 @@ public interface Row1<T1> extends Row {
|
||||
* <li><code>IN</code> predicates on temporary tables</li>
|
||||
* <li><code>IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1415,6 +1418,7 @@ public interface Row1<T1> extends Row {
|
||||
* </ul>
|
||||
*
|
||||
* @see #in(Collection)
|
||||
* @see Rows#toRowArray(Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
@ -1475,6 +1479,8 @@ public interface Row1<T1> extends Row {
|
||||
* <li><code>NOT IN</code> predicates on temporary tables</li>
|
||||
* <li><code>NOT IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1525,6 +1531,7 @@ public interface Row1<T1> extends Row {
|
||||
* </ul>
|
||||
*
|
||||
* @see #notIn(Collection)
|
||||
* @see Rows#toRowArray(Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
|
||||
@ -40,6 +40,7 @@ package org.jooq;
|
||||
import static org.jooq.SQLDialect.*;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jooq.conf.Settings;
|
||||
import org.jooq.impl.DSL;
|
||||
@ -1420,6 +1421,8 @@ public interface Row10<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> extends Row {
|
||||
* <li><code>IN</code> predicates on temporary tables</li>
|
||||
* <li><code>IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1469,6 +1472,7 @@ public interface Row10<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> extends Row {
|
||||
* </ul>
|
||||
*
|
||||
* @see #in(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
@ -1529,6 +1533,8 @@ public interface Row10<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> extends Row {
|
||||
* <li><code>NOT IN</code> predicates on temporary tables</li>
|
||||
* <li><code>NOT IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1579,6 +1585,7 @@ public interface Row10<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> extends Row {
|
||||
* </ul>
|
||||
*
|
||||
* @see #notIn(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
|
||||
@ -40,6 +40,7 @@ package org.jooq;
|
||||
import static org.jooq.SQLDialect.*;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jooq.conf.Settings;
|
||||
import org.jooq.impl.DSL;
|
||||
@ -1426,6 +1427,8 @@ public interface Row11<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> extends Row
|
||||
* <li><code>IN</code> predicates on temporary tables</li>
|
||||
* <li><code>IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1475,6 +1478,7 @@ public interface Row11<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> extends Row
|
||||
* </ul>
|
||||
*
|
||||
* @see #in(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
@ -1535,6 +1539,8 @@ public interface Row11<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> extends Row
|
||||
* <li><code>NOT IN</code> predicates on temporary tables</li>
|
||||
* <li><code>NOT IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1585,6 +1591,7 @@ public interface Row11<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> extends Row
|
||||
* </ul>
|
||||
*
|
||||
* @see #notIn(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
|
||||
@ -40,6 +40,7 @@ package org.jooq;
|
||||
import static org.jooq.SQLDialect.*;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jooq.conf.Settings;
|
||||
import org.jooq.impl.DSL;
|
||||
@ -1432,6 +1433,8 @@ public interface Row12<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> extend
|
||||
* <li><code>IN</code> predicates on temporary tables</li>
|
||||
* <li><code>IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1481,6 +1484,7 @@ public interface Row12<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> extend
|
||||
* </ul>
|
||||
*
|
||||
* @see #in(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
@ -1541,6 +1545,8 @@ public interface Row12<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> extend
|
||||
* <li><code>NOT IN</code> predicates on temporary tables</li>
|
||||
* <li><code>NOT IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1591,6 +1597,7 @@ public interface Row12<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> extend
|
||||
* </ul>
|
||||
*
|
||||
* @see #notIn(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
|
||||
@ -40,6 +40,7 @@ package org.jooq;
|
||||
import static org.jooq.SQLDialect.*;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jooq.conf.Settings;
|
||||
import org.jooq.impl.DSL;
|
||||
@ -1438,6 +1439,8 @@ public interface Row13<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13> e
|
||||
* <li><code>IN</code> predicates on temporary tables</li>
|
||||
* <li><code>IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1487,6 +1490,7 @@ public interface Row13<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13> e
|
||||
* </ul>
|
||||
*
|
||||
* @see #in(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
@ -1547,6 +1551,8 @@ public interface Row13<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13> e
|
||||
* <li><code>NOT IN</code> predicates on temporary tables</li>
|
||||
* <li><code>NOT IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1597,6 +1603,7 @@ public interface Row13<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13> e
|
||||
* </ul>
|
||||
*
|
||||
* @see #notIn(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
|
||||
@ -40,6 +40,7 @@ package org.jooq;
|
||||
import static org.jooq.SQLDialect.*;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jooq.conf.Settings;
|
||||
import org.jooq.impl.DSL;
|
||||
@ -1444,6 +1445,8 @@ public interface Row14<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* <li><code>IN</code> predicates on temporary tables</li>
|
||||
* <li><code>IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1493,6 +1496,7 @@ public interface Row14<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* </ul>
|
||||
*
|
||||
* @see #in(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
@ -1553,6 +1557,8 @@ public interface Row14<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* <li><code>NOT IN</code> predicates on temporary tables</li>
|
||||
* <li><code>NOT IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1603,6 +1609,7 @@ public interface Row14<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* </ul>
|
||||
*
|
||||
* @see #notIn(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
|
||||
@ -40,6 +40,7 @@ package org.jooq;
|
||||
import static org.jooq.SQLDialect.*;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jooq.conf.Settings;
|
||||
import org.jooq.impl.DSL;
|
||||
@ -1450,6 +1451,8 @@ public interface Row15<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* <li><code>IN</code> predicates on temporary tables</li>
|
||||
* <li><code>IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1499,6 +1502,7 @@ public interface Row15<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* </ul>
|
||||
*
|
||||
* @see #in(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
@ -1559,6 +1563,8 @@ public interface Row15<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* <li><code>NOT IN</code> predicates on temporary tables</li>
|
||||
* <li><code>NOT IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1609,6 +1615,7 @@ public interface Row15<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* </ul>
|
||||
*
|
||||
* @see #notIn(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
|
||||
@ -40,6 +40,7 @@ package org.jooq;
|
||||
import static org.jooq.SQLDialect.*;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jooq.conf.Settings;
|
||||
import org.jooq.impl.DSL;
|
||||
@ -1456,6 +1457,8 @@ public interface Row16<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* <li><code>IN</code> predicates on temporary tables</li>
|
||||
* <li><code>IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1505,6 +1508,7 @@ public interface Row16<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* </ul>
|
||||
*
|
||||
* @see #in(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
@ -1565,6 +1569,8 @@ public interface Row16<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* <li><code>NOT IN</code> predicates on temporary tables</li>
|
||||
* <li><code>NOT IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1615,6 +1621,7 @@ public interface Row16<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* </ul>
|
||||
*
|
||||
* @see #notIn(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
|
||||
@ -40,6 +40,7 @@ package org.jooq;
|
||||
import static org.jooq.SQLDialect.*;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jooq.conf.Settings;
|
||||
import org.jooq.impl.DSL;
|
||||
@ -1462,6 +1463,8 @@ public interface Row17<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* <li><code>IN</code> predicates on temporary tables</li>
|
||||
* <li><code>IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1511,6 +1514,7 @@ public interface Row17<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* </ul>
|
||||
*
|
||||
* @see #in(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
@ -1571,6 +1575,8 @@ public interface Row17<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* <li><code>NOT IN</code> predicates on temporary tables</li>
|
||||
* <li><code>NOT IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1621,6 +1627,7 @@ public interface Row17<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* </ul>
|
||||
*
|
||||
* @see #notIn(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
|
||||
@ -40,6 +40,7 @@ package org.jooq;
|
||||
import static org.jooq.SQLDialect.*;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jooq.conf.Settings;
|
||||
import org.jooq.impl.DSL;
|
||||
@ -1468,6 +1469,8 @@ public interface Row18<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* <li><code>IN</code> predicates on temporary tables</li>
|
||||
* <li><code>IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1517,6 +1520,7 @@ public interface Row18<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* </ul>
|
||||
*
|
||||
* @see #in(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
@ -1577,6 +1581,8 @@ public interface Row18<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* <li><code>NOT IN</code> predicates on temporary tables</li>
|
||||
* <li><code>NOT IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1627,6 +1633,7 @@ public interface Row18<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* </ul>
|
||||
*
|
||||
* @see #notIn(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
|
||||
@ -40,6 +40,7 @@ package org.jooq;
|
||||
import static org.jooq.SQLDialect.*;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jooq.conf.Settings;
|
||||
import org.jooq.impl.DSL;
|
||||
@ -1474,6 +1475,8 @@ public interface Row19<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* <li><code>IN</code> predicates on temporary tables</li>
|
||||
* <li><code>IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1523,6 +1526,7 @@ public interface Row19<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* </ul>
|
||||
*
|
||||
* @see #in(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
@ -1583,6 +1587,8 @@ public interface Row19<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* <li><code>NOT IN</code> predicates on temporary tables</li>
|
||||
* <li><code>NOT IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1633,6 +1639,7 @@ public interface Row19<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* </ul>
|
||||
*
|
||||
* @see #notIn(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
|
||||
@ -40,6 +40,7 @@ package org.jooq;
|
||||
import static org.jooq.SQLDialect.*;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jooq.conf.Settings;
|
||||
import org.jooq.impl.DSL;
|
||||
@ -1372,6 +1373,8 @@ public interface Row2<T1, T2> extends Row {
|
||||
* <li><code>IN</code> predicates on temporary tables</li>
|
||||
* <li><code>IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1421,6 +1424,7 @@ public interface Row2<T1, T2> extends Row {
|
||||
* </ul>
|
||||
*
|
||||
* @see #in(Collection)
|
||||
* @see Rows#toRowArray(Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
@ -1481,6 +1485,8 @@ public interface Row2<T1, T2> extends Row {
|
||||
* <li><code>NOT IN</code> predicates on temporary tables</li>
|
||||
* <li><code>NOT IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1531,6 +1537,7 @@ public interface Row2<T1, T2> extends Row {
|
||||
* </ul>
|
||||
*
|
||||
* @see #notIn(Collection)
|
||||
* @see Rows#toRowArray(Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
|
||||
@ -40,6 +40,7 @@ package org.jooq;
|
||||
import static org.jooq.SQLDialect.*;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jooq.conf.Settings;
|
||||
import org.jooq.impl.DSL;
|
||||
@ -1480,6 +1481,8 @@ public interface Row20<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* <li><code>IN</code> predicates on temporary tables</li>
|
||||
* <li><code>IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1529,6 +1532,7 @@ public interface Row20<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* </ul>
|
||||
*
|
||||
* @see #in(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
@ -1589,6 +1593,8 @@ public interface Row20<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* <li><code>NOT IN</code> predicates on temporary tables</li>
|
||||
* <li><code>NOT IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1639,6 +1645,7 @@ public interface Row20<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* </ul>
|
||||
*
|
||||
* @see #notIn(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
|
||||
@ -40,6 +40,7 @@ package org.jooq;
|
||||
import static org.jooq.SQLDialect.*;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jooq.conf.Settings;
|
||||
import org.jooq.impl.DSL;
|
||||
@ -1486,6 +1487,8 @@ public interface Row21<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* <li><code>IN</code> predicates on temporary tables</li>
|
||||
* <li><code>IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1535,6 +1538,7 @@ public interface Row21<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* </ul>
|
||||
*
|
||||
* @see #in(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
@ -1595,6 +1599,8 @@ public interface Row21<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* <li><code>NOT IN</code> predicates on temporary tables</li>
|
||||
* <li><code>NOT IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1645,6 +1651,7 @@ public interface Row21<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* </ul>
|
||||
*
|
||||
* @see #notIn(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
|
||||
@ -40,6 +40,7 @@ package org.jooq;
|
||||
import static org.jooq.SQLDialect.*;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jooq.conf.Settings;
|
||||
import org.jooq.impl.DSL;
|
||||
@ -1492,6 +1493,8 @@ public interface Row22<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* <li><code>IN</code> predicates on temporary tables</li>
|
||||
* <li><code>IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1541,6 +1544,7 @@ public interface Row22<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* </ul>
|
||||
*
|
||||
* @see #in(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
@ -1601,6 +1605,8 @@ public interface Row22<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* <li><code>NOT IN</code> predicates on temporary tables</li>
|
||||
* <li><code>NOT IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1651,6 +1657,7 @@ public interface Row22<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T
|
||||
* </ul>
|
||||
*
|
||||
* @see #notIn(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
|
||||
@ -40,6 +40,7 @@ package org.jooq;
|
||||
import static org.jooq.SQLDialect.*;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jooq.conf.Settings;
|
||||
import org.jooq.impl.DSL;
|
||||
@ -1378,6 +1379,8 @@ public interface Row3<T1, T2, T3> extends Row {
|
||||
* <li><code>IN</code> predicates on temporary tables</li>
|
||||
* <li><code>IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1427,6 +1430,7 @@ public interface Row3<T1, T2, T3> extends Row {
|
||||
* </ul>
|
||||
*
|
||||
* @see #in(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
@ -1487,6 +1491,8 @@ public interface Row3<T1, T2, T3> extends Row {
|
||||
* <li><code>NOT IN</code> predicates on temporary tables</li>
|
||||
* <li><code>NOT IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1537,6 +1543,7 @@ public interface Row3<T1, T2, T3> extends Row {
|
||||
* </ul>
|
||||
*
|
||||
* @see #notIn(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
|
||||
@ -40,6 +40,7 @@ package org.jooq;
|
||||
import static org.jooq.SQLDialect.*;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jooq.conf.Settings;
|
||||
import org.jooq.impl.DSL;
|
||||
@ -1384,6 +1385,8 @@ public interface Row4<T1, T2, T3, T4> extends Row {
|
||||
* <li><code>IN</code> predicates on temporary tables</li>
|
||||
* <li><code>IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1433,6 +1436,7 @@ public interface Row4<T1, T2, T3, T4> extends Row {
|
||||
* </ul>
|
||||
*
|
||||
* @see #in(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
@ -1493,6 +1497,8 @@ public interface Row4<T1, T2, T3, T4> extends Row {
|
||||
* <li><code>NOT IN</code> predicates on temporary tables</li>
|
||||
* <li><code>NOT IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1543,6 +1549,7 @@ public interface Row4<T1, T2, T3, T4> extends Row {
|
||||
* </ul>
|
||||
*
|
||||
* @see #notIn(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
|
||||
@ -40,6 +40,7 @@ package org.jooq;
|
||||
import static org.jooq.SQLDialect.*;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jooq.conf.Settings;
|
||||
import org.jooq.impl.DSL;
|
||||
@ -1390,6 +1391,8 @@ public interface Row5<T1, T2, T3, T4, T5> extends Row {
|
||||
* <li><code>IN</code> predicates on temporary tables</li>
|
||||
* <li><code>IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1439,6 +1442,7 @@ public interface Row5<T1, T2, T3, T4, T5> extends Row {
|
||||
* </ul>
|
||||
*
|
||||
* @see #in(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
@ -1499,6 +1503,8 @@ public interface Row5<T1, T2, T3, T4, T5> extends Row {
|
||||
* <li><code>NOT IN</code> predicates on temporary tables</li>
|
||||
* <li><code>NOT IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1549,6 +1555,7 @@ public interface Row5<T1, T2, T3, T4, T5> extends Row {
|
||||
* </ul>
|
||||
*
|
||||
* @see #notIn(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
|
||||
@ -40,6 +40,7 @@ package org.jooq;
|
||||
import static org.jooq.SQLDialect.*;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jooq.conf.Settings;
|
||||
import org.jooq.impl.DSL;
|
||||
@ -1396,6 +1397,8 @@ public interface Row6<T1, T2, T3, T4, T5, T6> extends Row {
|
||||
* <li><code>IN</code> predicates on temporary tables</li>
|
||||
* <li><code>IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1445,6 +1448,7 @@ public interface Row6<T1, T2, T3, T4, T5, T6> extends Row {
|
||||
* </ul>
|
||||
*
|
||||
* @see #in(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
@ -1505,6 +1509,8 @@ public interface Row6<T1, T2, T3, T4, T5, T6> extends Row {
|
||||
* <li><code>NOT IN</code> predicates on temporary tables</li>
|
||||
* <li><code>NOT IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1555,6 +1561,7 @@ public interface Row6<T1, T2, T3, T4, T5, T6> extends Row {
|
||||
* </ul>
|
||||
*
|
||||
* @see #notIn(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
|
||||
@ -40,6 +40,7 @@ package org.jooq;
|
||||
import static org.jooq.SQLDialect.*;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jooq.conf.Settings;
|
||||
import org.jooq.impl.DSL;
|
||||
@ -1402,6 +1403,8 @@ public interface Row7<T1, T2, T3, T4, T5, T6, T7> extends Row {
|
||||
* <li><code>IN</code> predicates on temporary tables</li>
|
||||
* <li><code>IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1451,6 +1454,7 @@ public interface Row7<T1, T2, T3, T4, T5, T6, T7> extends Row {
|
||||
* </ul>
|
||||
*
|
||||
* @see #in(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
@ -1511,6 +1515,8 @@ public interface Row7<T1, T2, T3, T4, T5, T6, T7> extends Row {
|
||||
* <li><code>NOT IN</code> predicates on temporary tables</li>
|
||||
* <li><code>NOT IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1561,6 +1567,7 @@ public interface Row7<T1, T2, T3, T4, T5, T6, T7> extends Row {
|
||||
* </ul>
|
||||
*
|
||||
* @see #notIn(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
|
||||
@ -40,6 +40,7 @@ package org.jooq;
|
||||
import static org.jooq.SQLDialect.*;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jooq.conf.Settings;
|
||||
import org.jooq.impl.DSL;
|
||||
@ -1408,6 +1409,8 @@ public interface Row8<T1, T2, T3, T4, T5, T6, T7, T8> extends Row {
|
||||
* <li><code>IN</code> predicates on temporary tables</li>
|
||||
* <li><code>IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1457,6 +1460,7 @@ public interface Row8<T1, T2, T3, T4, T5, T6, T7, T8> extends Row {
|
||||
* </ul>
|
||||
*
|
||||
* @see #in(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
@ -1517,6 +1521,8 @@ public interface Row8<T1, T2, T3, T4, T5, T6, T7, T8> extends Row {
|
||||
* <li><code>NOT IN</code> predicates on temporary tables</li>
|
||||
* <li><code>NOT IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1567,6 +1573,7 @@ public interface Row8<T1, T2, T3, T4, T5, T6, T7, T8> extends Row {
|
||||
* </ul>
|
||||
*
|
||||
* @see #notIn(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
|
||||
@ -40,6 +40,7 @@ package org.jooq;
|
||||
import static org.jooq.SQLDialect.*;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jooq.conf.Settings;
|
||||
import org.jooq.impl.DSL;
|
||||
@ -1414,6 +1415,8 @@ public interface Row9<T1, T2, T3, T4, T5, T6, T7, T8, T9> extends Row {
|
||||
* <li><code>IN</code> predicates on temporary tables</li>
|
||||
* <li><code>IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1463,6 +1466,7 @@ public interface Row9<T1, T2, T3, T4, T5, T6, T7, T8, T9> extends Row {
|
||||
* </ul>
|
||||
*
|
||||
* @see #in(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
@ -1523,6 +1527,8 @@ public interface Row9<T1, T2, T3, T4, T5, T6, T7, T8, T9> extends Row {
|
||||
* <li><code>NOT IN</code> predicates on temporary tables</li>
|
||||
* <li><code>NOT IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1573,6 +1579,7 @@ public interface Row9<T1, T2, T3, T4, T5, T6, T7, T8, T9> extends Row {
|
||||
* </ul>
|
||||
*
|
||||
* @see #notIn(Collection)
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
|
||||
@ -40,6 +40,7 @@ package org.jooq;
|
||||
import static org.jooq.SQLDialect.*;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.jooq.conf.Settings;
|
||||
import org.jooq.impl.DSL;
|
||||
@ -1356,6 +1357,8 @@ public interface RowN extends Row {
|
||||
* <li><code>IN</code> predicates on temporary tables</li>
|
||||
* <li><code>IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1405,6 +1408,7 @@ public interface RowN extends Row {
|
||||
* </ul>
|
||||
*
|
||||
* @see #in(Collection)
|
||||
* @see Rows#toRowArray(Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1463,6 +1467,8 @@ public interface RowN extends Row {
|
||||
* <li><code>NOT IN</code> predicates on temporary tables</li>
|
||||
* <li><code>NOT IN</code> predicates on unnested array bind variables</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Rows#toRowList(Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -1513,6 +1519,7 @@ public interface RowN extends Row {
|
||||
* </ul>
|
||||
*
|
||||
* @see #notIn(Collection)
|
||||
* @see Rows#toRowArray(Function, Function)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
|
||||
@ -39,6 +39,7 @@ package org.jooq;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.function.BinaryOperator;
|
||||
import java.util.function.Function;
|
||||
import java.util.stream.Collector;
|
||||
import java.util.stream.Collectors;
|
||||
@ -55,33 +56,29 @@ import org.jooq.impl.DSL;
|
||||
* @author Dmitry Baev
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@Internal
|
||||
public final class Rows {
|
||||
|
||||
/**
|
||||
* Create a collector that can collect into an array of {@link RowN}.
|
||||
*/
|
||||
@SafeVarargs
|
||||
public static <T> Collector<T, ?, RowN[]> collectingArray(
|
||||
public static final <T> Collector<T, ?, RowN[]> toRowArray(
|
||||
Function<? super T, ? extends Field<?>>... functions
|
||||
) {
|
||||
return Collectors.collectingAndThen(collecting(functions), l -> l.toArray(new RowN[0]));
|
||||
return Collectors.collectingAndThen(toRowList(functions), l -> l.toArray(new RowN[0]));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a collector that can collect into a list of {@link RowN}.
|
||||
*/
|
||||
@SafeVarargs
|
||||
public static <T, T1> Collector<T, ?, List<RowN>> collecting(
|
||||
public static final <T, T1> Collector<T, ?, List<RowN>> toRowList(
|
||||
Function<? super T, ? extends Field<?>>... functions
|
||||
) {
|
||||
return Collector.of(
|
||||
ArrayList::new,
|
||||
(l, t) -> l.add(DSL.row(Stream.of(functions).map(f -> f.apply(t)).toArray())),
|
||||
(t1, t2) -> {
|
||||
t1.addAll(t2);
|
||||
return t1;
|
||||
}
|
||||
listCombiner()
|
||||
);
|
||||
}
|
||||
|
||||
@ -91,25 +88,22 @@ public final class Rows {
|
||||
* Create a collector that can collect into an array of {@link Row1}.
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T, T1> Collector<T, ?, Row1<T1>[]> collectingArray(
|
||||
public static final <T, T1> Collector<T, ?, Row1<T1>[]> toRowArray(
|
||||
Function<? super T, ? extends Field<T1>> f1
|
||||
) {
|
||||
return Collectors.collectingAndThen(collecting(f1), l -> l.toArray(new Row1[0]));
|
||||
return Collectors.collectingAndThen(toRowList(f1), l -> l.toArray(new Row1[0]));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a collector that can collect into a list of {@link Row1}.
|
||||
*/
|
||||
public static <T, T1> Collector<T, ?, List<Row1<T1>>> collecting(
|
||||
public static final <T, T1> Collector<T, ?, List<Row1<T1>>> toRowList(
|
||||
Function<? super T, ? extends Field<T1>> f1
|
||||
) {
|
||||
return Collector.of(
|
||||
ArrayList::new,
|
||||
(l, t) -> l.add(DSL.row(f1.apply(t))),
|
||||
(t1, t2) -> {
|
||||
t1.addAll(t2);
|
||||
return t1;
|
||||
}
|
||||
listCombiner()
|
||||
);
|
||||
}
|
||||
|
||||
@ -117,27 +111,24 @@ public final class Rows {
|
||||
* Create a collector that can collect into an array of {@link Row2}.
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T, T1, T2> Collector<T, ?, Row2<T1, T2>[]> collectingArray(
|
||||
public static final <T, T1, T2> Collector<T, ?, Row2<T1, T2>[]> toRowArray(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2
|
||||
) {
|
||||
return Collectors.collectingAndThen(collecting(f1, f2), l -> l.toArray(new Row2[0]));
|
||||
return Collectors.collectingAndThen(toRowList(f1, f2), l -> l.toArray(new Row2[0]));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a collector that can collect into a list of {@link Row2}.
|
||||
*/
|
||||
public static <T, T1, T2> Collector<T, ?, List<Row2<T1, T2>>> collecting(
|
||||
public static final <T, T1, T2> Collector<T, ?, List<Row2<T1, T2>>> toRowList(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2
|
||||
) {
|
||||
return Collector.of(
|
||||
ArrayList::new,
|
||||
(l, t) -> l.add(DSL.row(f1.apply(t), f2.apply(t))),
|
||||
(t1, t2) -> {
|
||||
t1.addAll(t2);
|
||||
return t1;
|
||||
}
|
||||
listCombiner()
|
||||
);
|
||||
}
|
||||
|
||||
@ -145,18 +136,18 @@ public final class Rows {
|
||||
* Create a collector that can collect into an array of {@link Row3}.
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T, T1, T2, T3> Collector<T, ?, Row3<T1, T2, T3>[]> collectingArray(
|
||||
public static final <T, T1, T2, T3> Collector<T, ?, Row3<T1, T2, T3>[]> toRowArray(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3
|
||||
) {
|
||||
return Collectors.collectingAndThen(collecting(f1, f2, f3), l -> l.toArray(new Row3[0]));
|
||||
return Collectors.collectingAndThen(toRowList(f1, f2, f3), l -> l.toArray(new Row3[0]));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a collector that can collect into a list of {@link Row3}.
|
||||
*/
|
||||
public static <T, T1, T2, T3> Collector<T, ?, List<Row3<T1, T2, T3>>> collecting(
|
||||
public static final <T, T1, T2, T3> Collector<T, ?, List<Row3<T1, T2, T3>>> toRowList(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3
|
||||
@ -164,10 +155,7 @@ public final class Rows {
|
||||
return Collector.of(
|
||||
ArrayList::new,
|
||||
(l, t) -> l.add(DSL.row(f1.apply(t), f2.apply(t), f3.apply(t))),
|
||||
(t1, t2) -> {
|
||||
t1.addAll(t2);
|
||||
return t1;
|
||||
}
|
||||
listCombiner()
|
||||
);
|
||||
}
|
||||
|
||||
@ -175,19 +163,19 @@ public final class Rows {
|
||||
* Create a collector that can collect into an array of {@link Row4}.
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T, T1, T2, T3, T4> Collector<T, ?, Row4<T1, T2, T3, T4>[]> collectingArray(
|
||||
public static final <T, T1, T2, T3, T4> Collector<T, ?, Row4<T1, T2, T3, T4>[]> toRowArray(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
Function<? super T, ? extends Field<T4>> f4
|
||||
) {
|
||||
return Collectors.collectingAndThen(collecting(f1, f2, f3, f4), l -> l.toArray(new Row4[0]));
|
||||
return Collectors.collectingAndThen(toRowList(f1, f2, f3, f4), l -> l.toArray(new Row4[0]));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a collector that can collect into a list of {@link Row4}.
|
||||
*/
|
||||
public static <T, T1, T2, T3, T4> Collector<T, ?, List<Row4<T1, T2, T3, T4>>> collecting(
|
||||
public static final <T, T1, T2, T3, T4> Collector<T, ?, List<Row4<T1, T2, T3, T4>>> toRowList(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -196,10 +184,7 @@ public final class Rows {
|
||||
return Collector.of(
|
||||
ArrayList::new,
|
||||
(l, t) -> l.add(DSL.row(f1.apply(t), f2.apply(t), f3.apply(t), f4.apply(t))),
|
||||
(t1, t2) -> {
|
||||
t1.addAll(t2);
|
||||
return t1;
|
||||
}
|
||||
listCombiner()
|
||||
);
|
||||
}
|
||||
|
||||
@ -207,20 +192,20 @@ public final class Rows {
|
||||
* Create a collector that can collect into an array of {@link Row5}.
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T, T1, T2, T3, T4, T5> Collector<T, ?, Row5<T1, T2, T3, T4, T5>[]> collectingArray(
|
||||
public static final <T, T1, T2, T3, T4, T5> Collector<T, ?, Row5<T1, T2, T3, T4, T5>[]> toRowArray(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
Function<? super T, ? extends Field<T4>> f4,
|
||||
Function<? super T, ? extends Field<T5>> f5
|
||||
) {
|
||||
return Collectors.collectingAndThen(collecting(f1, f2, f3, f4, f5), l -> l.toArray(new Row5[0]));
|
||||
return Collectors.collectingAndThen(toRowList(f1, f2, f3, f4, f5), l -> l.toArray(new Row5[0]));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a collector that can collect into a list of {@link Row5}.
|
||||
*/
|
||||
public static <T, T1, T2, T3, T4, T5> Collector<T, ?, List<Row5<T1, T2, T3, T4, T5>>> collecting(
|
||||
public static final <T, T1, T2, T3, T4, T5> Collector<T, ?, List<Row5<T1, T2, T3, T4, T5>>> toRowList(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -230,10 +215,7 @@ public final class Rows {
|
||||
return Collector.of(
|
||||
ArrayList::new,
|
||||
(l, t) -> l.add(DSL.row(f1.apply(t), f2.apply(t), f3.apply(t), f4.apply(t), f5.apply(t))),
|
||||
(t1, t2) -> {
|
||||
t1.addAll(t2);
|
||||
return t1;
|
||||
}
|
||||
listCombiner()
|
||||
);
|
||||
}
|
||||
|
||||
@ -241,7 +223,7 @@ public final class Rows {
|
||||
* Create a collector that can collect into an array of {@link Row6}.
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T, T1, T2, T3, T4, T5, T6> Collector<T, ?, Row6<T1, T2, T3, T4, T5, T6>[]> collectingArray(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6> Collector<T, ?, Row6<T1, T2, T3, T4, T5, T6>[]> toRowArray(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -249,13 +231,13 @@ public final class Rows {
|
||||
Function<? super T, ? extends Field<T5>> f5,
|
||||
Function<? super T, ? extends Field<T6>> f6
|
||||
) {
|
||||
return Collectors.collectingAndThen(collecting(f1, f2, f3, f4, f5, f6), l -> l.toArray(new Row6[0]));
|
||||
return Collectors.collectingAndThen(toRowList(f1, f2, f3, f4, f5, f6), l -> l.toArray(new Row6[0]));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a collector that can collect into a list of {@link Row6}.
|
||||
*/
|
||||
public static <T, T1, T2, T3, T4, T5, T6> Collector<T, ?, List<Row6<T1, T2, T3, T4, T5, T6>>> collecting(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6> Collector<T, ?, List<Row6<T1, T2, T3, T4, T5, T6>>> toRowList(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -266,10 +248,7 @@ public final class Rows {
|
||||
return Collector.of(
|
||||
ArrayList::new,
|
||||
(l, t) -> l.add(DSL.row(f1.apply(t), f2.apply(t), f3.apply(t), f4.apply(t), f5.apply(t), f6.apply(t))),
|
||||
(t1, t2) -> {
|
||||
t1.addAll(t2);
|
||||
return t1;
|
||||
}
|
||||
listCombiner()
|
||||
);
|
||||
}
|
||||
|
||||
@ -277,7 +256,7 @@ public final class Rows {
|
||||
* Create a collector that can collect into an array of {@link Row7}.
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T, T1, T2, T3, T4, T5, T6, T7> Collector<T, ?, Row7<T1, T2, T3, T4, T5, T6, T7>[]> collectingArray(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6, T7> Collector<T, ?, Row7<T1, T2, T3, T4, T5, T6, T7>[]> toRowArray(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -286,13 +265,13 @@ public final class Rows {
|
||||
Function<? super T, ? extends Field<T6>> f6,
|
||||
Function<? super T, ? extends Field<T7>> f7
|
||||
) {
|
||||
return Collectors.collectingAndThen(collecting(f1, f2, f3, f4, f5, f6, f7), l -> l.toArray(new Row7[0]));
|
||||
return Collectors.collectingAndThen(toRowList(f1, f2, f3, f4, f5, f6, f7), l -> l.toArray(new Row7[0]));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a collector that can collect into a list of {@link Row7}.
|
||||
*/
|
||||
public static <T, T1, T2, T3, T4, T5, T6, T7> Collector<T, ?, List<Row7<T1, T2, T3, T4, T5, T6, T7>>> collecting(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6, T7> Collector<T, ?, List<Row7<T1, T2, T3, T4, T5, T6, T7>>> toRowList(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -304,10 +283,7 @@ public final class Rows {
|
||||
return Collector.of(
|
||||
ArrayList::new,
|
||||
(l, t) -> l.add(DSL.row(f1.apply(t), f2.apply(t), f3.apply(t), f4.apply(t), f5.apply(t), f6.apply(t), f7.apply(t))),
|
||||
(t1, t2) -> {
|
||||
t1.addAll(t2);
|
||||
return t1;
|
||||
}
|
||||
listCombiner()
|
||||
);
|
||||
}
|
||||
|
||||
@ -315,7 +291,7 @@ public final class Rows {
|
||||
* Create a collector that can collect into an array of {@link Row8}.
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T, T1, T2, T3, T4, T5, T6, T7, T8> Collector<T, ?, Row8<T1, T2, T3, T4, T5, T6, T7, T8>[]> collectingArray(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6, T7, T8> Collector<T, ?, Row8<T1, T2, T3, T4, T5, T6, T7, T8>[]> toRowArray(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -325,13 +301,13 @@ public final class Rows {
|
||||
Function<? super T, ? extends Field<T7>> f7,
|
||||
Function<? super T, ? extends Field<T8>> f8
|
||||
) {
|
||||
return Collectors.collectingAndThen(collecting(f1, f2, f3, f4, f5, f6, f7, f8), l -> l.toArray(new Row8[0]));
|
||||
return Collectors.collectingAndThen(toRowList(f1, f2, f3, f4, f5, f6, f7, f8), l -> l.toArray(new Row8[0]));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a collector that can collect into a list of {@link Row8}.
|
||||
*/
|
||||
public static <T, T1, T2, T3, T4, T5, T6, T7, T8> Collector<T, ?, List<Row8<T1, T2, T3, T4, T5, T6, T7, T8>>> collecting(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6, T7, T8> Collector<T, ?, List<Row8<T1, T2, T3, T4, T5, T6, T7, T8>>> toRowList(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -344,10 +320,7 @@ public final class Rows {
|
||||
return Collector.of(
|
||||
ArrayList::new,
|
||||
(l, t) -> l.add(DSL.row(f1.apply(t), f2.apply(t), f3.apply(t), f4.apply(t), f5.apply(t), f6.apply(t), f7.apply(t), f8.apply(t))),
|
||||
(t1, t2) -> {
|
||||
t1.addAll(t2);
|
||||
return t1;
|
||||
}
|
||||
listCombiner()
|
||||
);
|
||||
}
|
||||
|
||||
@ -355,7 +328,7 @@ public final class Rows {
|
||||
* Create a collector that can collect into an array of {@link Row9}.
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T, T1, T2, T3, T4, T5, T6, T7, T8, T9> Collector<T, ?, Row9<T1, T2, T3, T4, T5, T6, T7, T8, T9>[]> collectingArray(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6, T7, T8, T9> Collector<T, ?, Row9<T1, T2, T3, T4, T5, T6, T7, T8, T9>[]> toRowArray(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -366,13 +339,13 @@ public final class Rows {
|
||||
Function<? super T, ? extends Field<T8>> f8,
|
||||
Function<? super T, ? extends Field<T9>> f9
|
||||
) {
|
||||
return Collectors.collectingAndThen(collecting(f1, f2, f3, f4, f5, f6, f7, f8, f9), l -> l.toArray(new Row9[0]));
|
||||
return Collectors.collectingAndThen(toRowList(f1, f2, f3, f4, f5, f6, f7, f8, f9), l -> l.toArray(new Row9[0]));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a collector that can collect into a list of {@link Row9}.
|
||||
*/
|
||||
public static <T, T1, T2, T3, T4, T5, T6, T7, T8, T9> Collector<T, ?, List<Row9<T1, T2, T3, T4, T5, T6, T7, T8, T9>>> collecting(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6, T7, T8, T9> Collector<T, ?, List<Row9<T1, T2, T3, T4, T5, T6, T7, T8, T9>>> toRowList(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -386,10 +359,7 @@ public final class Rows {
|
||||
return Collector.of(
|
||||
ArrayList::new,
|
||||
(l, t) -> l.add(DSL.row(f1.apply(t), f2.apply(t), f3.apply(t), f4.apply(t), f5.apply(t), f6.apply(t), f7.apply(t), f8.apply(t), f9.apply(t))),
|
||||
(t1, t2) -> {
|
||||
t1.addAll(t2);
|
||||
return t1;
|
||||
}
|
||||
listCombiner()
|
||||
);
|
||||
}
|
||||
|
||||
@ -397,7 +367,7 @@ public final class Rows {
|
||||
* Create a collector that can collect into an array of {@link Row10}.
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> Collector<T, ?, Row10<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>[]> collectingArray(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> Collector<T, ?, Row10<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>[]> toRowArray(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -409,13 +379,13 @@ public final class Rows {
|
||||
Function<? super T, ? extends Field<T9>> f9,
|
||||
Function<? super T, ? extends Field<T10>> f10
|
||||
) {
|
||||
return Collectors.collectingAndThen(collecting(f1, f2, f3, f4, f5, f6, f7, f8, f9, f10), l -> l.toArray(new Row10[0]));
|
||||
return Collectors.collectingAndThen(toRowList(f1, f2, f3, f4, f5, f6, f7, f8, f9, f10), l -> l.toArray(new Row10[0]));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a collector that can collect into a list of {@link Row10}.
|
||||
*/
|
||||
public static <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> Collector<T, ?, List<Row10<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>>> collecting(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> Collector<T, ?, List<Row10<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>>> toRowList(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -430,10 +400,7 @@ public final class Rows {
|
||||
return Collector.of(
|
||||
ArrayList::new,
|
||||
(l, t) -> l.add(DSL.row(f1.apply(t), f2.apply(t), f3.apply(t), f4.apply(t), f5.apply(t), f6.apply(t), f7.apply(t), f8.apply(t), f9.apply(t), f10.apply(t))),
|
||||
(t1, t2) -> {
|
||||
t1.addAll(t2);
|
||||
return t1;
|
||||
}
|
||||
listCombiner()
|
||||
);
|
||||
}
|
||||
|
||||
@ -441,7 +408,7 @@ public final class Rows {
|
||||
* Create a collector that can collect into an array of {@link Row11}.
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Collector<T, ?, Row11<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>[]> collectingArray(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Collector<T, ?, Row11<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>[]> toRowArray(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -454,13 +421,13 @@ public final class Rows {
|
||||
Function<? super T, ? extends Field<T10>> f10,
|
||||
Function<? super T, ? extends Field<T11>> f11
|
||||
) {
|
||||
return Collectors.collectingAndThen(collecting(f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11), l -> l.toArray(new Row11[0]));
|
||||
return Collectors.collectingAndThen(toRowList(f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11), l -> l.toArray(new Row11[0]));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a collector that can collect into a list of {@link Row11}.
|
||||
*/
|
||||
public static <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Collector<T, ?, List<Row11<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>>> collecting(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Collector<T, ?, List<Row11<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>>> toRowList(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -476,10 +443,7 @@ public final class Rows {
|
||||
return Collector.of(
|
||||
ArrayList::new,
|
||||
(l, t) -> l.add(DSL.row(f1.apply(t), f2.apply(t), f3.apply(t), f4.apply(t), f5.apply(t), f6.apply(t), f7.apply(t), f8.apply(t), f9.apply(t), f10.apply(t), f11.apply(t))),
|
||||
(t1, t2) -> {
|
||||
t1.addAll(t2);
|
||||
return t1;
|
||||
}
|
||||
listCombiner()
|
||||
);
|
||||
}
|
||||
|
||||
@ -487,7 +451,7 @@ public final class Rows {
|
||||
* Create a collector that can collect into an array of {@link Row12}.
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> Collector<T, ?, Row12<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>[]> collectingArray(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> Collector<T, ?, Row12<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>[]> toRowArray(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -501,13 +465,13 @@ public final class Rows {
|
||||
Function<? super T, ? extends Field<T11>> f11,
|
||||
Function<? super T, ? extends Field<T12>> f12
|
||||
) {
|
||||
return Collectors.collectingAndThen(collecting(f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12), l -> l.toArray(new Row12[0]));
|
||||
return Collectors.collectingAndThen(toRowList(f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12), l -> l.toArray(new Row12[0]));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a collector that can collect into a list of {@link Row12}.
|
||||
*/
|
||||
public static <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> Collector<T, ?, List<Row12<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>>> collecting(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> Collector<T, ?, List<Row12<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>>> toRowList(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -524,10 +488,7 @@ public final class Rows {
|
||||
return Collector.of(
|
||||
ArrayList::new,
|
||||
(l, t) -> l.add(DSL.row(f1.apply(t), f2.apply(t), f3.apply(t), f4.apply(t), f5.apply(t), f6.apply(t), f7.apply(t), f8.apply(t), f9.apply(t), f10.apply(t), f11.apply(t), f12.apply(t))),
|
||||
(t1, t2) -> {
|
||||
t1.addAll(t2);
|
||||
return t1;
|
||||
}
|
||||
listCombiner()
|
||||
);
|
||||
}
|
||||
|
||||
@ -535,7 +496,7 @@ public final class Rows {
|
||||
* Create a collector that can collect into an array of {@link Row13}.
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13> Collector<T, ?, Row13<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>[]> collectingArray(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13> Collector<T, ?, Row13<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>[]> toRowArray(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -550,13 +511,13 @@ public final class Rows {
|
||||
Function<? super T, ? extends Field<T12>> f12,
|
||||
Function<? super T, ? extends Field<T13>> f13
|
||||
) {
|
||||
return Collectors.collectingAndThen(collecting(f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13), l -> l.toArray(new Row13[0]));
|
||||
return Collectors.collectingAndThen(toRowList(f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13), l -> l.toArray(new Row13[0]));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a collector that can collect into a list of {@link Row13}.
|
||||
*/
|
||||
public static <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13> Collector<T, ?, List<Row13<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>>> collecting(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13> Collector<T, ?, List<Row13<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>>> toRowList(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -574,10 +535,7 @@ public final class Rows {
|
||||
return Collector.of(
|
||||
ArrayList::new,
|
||||
(l, t) -> l.add(DSL.row(f1.apply(t), f2.apply(t), f3.apply(t), f4.apply(t), f5.apply(t), f6.apply(t), f7.apply(t), f8.apply(t), f9.apply(t), f10.apply(t), f11.apply(t), f12.apply(t), f13.apply(t))),
|
||||
(t1, t2) -> {
|
||||
t1.addAll(t2);
|
||||
return t1;
|
||||
}
|
||||
listCombiner()
|
||||
);
|
||||
}
|
||||
|
||||
@ -585,7 +543,7 @@ public final class Rows {
|
||||
* Create a collector that can collect into an array of {@link Row14}.
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14> Collector<T, ?, Row14<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>[]> collectingArray(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14> Collector<T, ?, Row14<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>[]> toRowArray(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -601,13 +559,13 @@ public final class Rows {
|
||||
Function<? super T, ? extends Field<T13>> f13,
|
||||
Function<? super T, ? extends Field<T14>> f14
|
||||
) {
|
||||
return Collectors.collectingAndThen(collecting(f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14), l -> l.toArray(new Row14[0]));
|
||||
return Collectors.collectingAndThen(toRowList(f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14), l -> l.toArray(new Row14[0]));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a collector that can collect into a list of {@link Row14}.
|
||||
*/
|
||||
public static <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14> Collector<T, ?, List<Row14<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>>> collecting(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14> Collector<T, ?, List<Row14<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>>> toRowList(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -626,10 +584,7 @@ public final class Rows {
|
||||
return Collector.of(
|
||||
ArrayList::new,
|
||||
(l, t) -> l.add(DSL.row(f1.apply(t), f2.apply(t), f3.apply(t), f4.apply(t), f5.apply(t), f6.apply(t), f7.apply(t), f8.apply(t), f9.apply(t), f10.apply(t), f11.apply(t), f12.apply(t), f13.apply(t), f14.apply(t))),
|
||||
(t1, t2) -> {
|
||||
t1.addAll(t2);
|
||||
return t1;
|
||||
}
|
||||
listCombiner()
|
||||
);
|
||||
}
|
||||
|
||||
@ -637,7 +592,7 @@ public final class Rows {
|
||||
* Create a collector that can collect into an array of {@link Row15}.
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15> Collector<T, ?, Row15<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>[]> collectingArray(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15> Collector<T, ?, Row15<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>[]> toRowArray(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -654,13 +609,13 @@ public final class Rows {
|
||||
Function<? super T, ? extends Field<T14>> f14,
|
||||
Function<? super T, ? extends Field<T15>> f15
|
||||
) {
|
||||
return Collectors.collectingAndThen(collecting(f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15), l -> l.toArray(new Row15[0]));
|
||||
return Collectors.collectingAndThen(toRowList(f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15), l -> l.toArray(new Row15[0]));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a collector that can collect into a list of {@link Row15}.
|
||||
*/
|
||||
public static <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15> Collector<T, ?, List<Row15<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>>> collecting(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15> Collector<T, ?, List<Row15<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>>> toRowList(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -680,10 +635,7 @@ public final class Rows {
|
||||
return Collector.of(
|
||||
ArrayList::new,
|
||||
(l, t) -> l.add(DSL.row(f1.apply(t), f2.apply(t), f3.apply(t), f4.apply(t), f5.apply(t), f6.apply(t), f7.apply(t), f8.apply(t), f9.apply(t), f10.apply(t), f11.apply(t), f12.apply(t), f13.apply(t), f14.apply(t), f15.apply(t))),
|
||||
(t1, t2) -> {
|
||||
t1.addAll(t2);
|
||||
return t1;
|
||||
}
|
||||
listCombiner()
|
||||
);
|
||||
}
|
||||
|
||||
@ -691,7 +643,7 @@ public final class Rows {
|
||||
* Create a collector that can collect into an array of {@link Row16}.
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16> Collector<T, ?, Row16<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>[]> collectingArray(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16> Collector<T, ?, Row16<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>[]> toRowArray(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -709,13 +661,13 @@ public final class Rows {
|
||||
Function<? super T, ? extends Field<T15>> f15,
|
||||
Function<? super T, ? extends Field<T16>> f16
|
||||
) {
|
||||
return Collectors.collectingAndThen(collecting(f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16), l -> l.toArray(new Row16[0]));
|
||||
return Collectors.collectingAndThen(toRowList(f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16), l -> l.toArray(new Row16[0]));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a collector that can collect into a list of {@link Row16}.
|
||||
*/
|
||||
public static <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16> Collector<T, ?, List<Row16<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>>> collecting(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16> Collector<T, ?, List<Row16<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>>> toRowList(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -736,10 +688,7 @@ public final class Rows {
|
||||
return Collector.of(
|
||||
ArrayList::new,
|
||||
(l, t) -> l.add(DSL.row(f1.apply(t), f2.apply(t), f3.apply(t), f4.apply(t), f5.apply(t), f6.apply(t), f7.apply(t), f8.apply(t), f9.apply(t), f10.apply(t), f11.apply(t), f12.apply(t), f13.apply(t), f14.apply(t), f15.apply(t), f16.apply(t))),
|
||||
(t1, t2) -> {
|
||||
t1.addAll(t2);
|
||||
return t1;
|
||||
}
|
||||
listCombiner()
|
||||
);
|
||||
}
|
||||
|
||||
@ -747,7 +696,7 @@ public final class Rows {
|
||||
* Create a collector that can collect into an array of {@link Row17}.
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17> Collector<T, ?, Row17<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17>[]> collectingArray(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17> Collector<T, ?, Row17<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17>[]> toRowArray(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -766,13 +715,13 @@ public final class Rows {
|
||||
Function<? super T, ? extends Field<T16>> f16,
|
||||
Function<? super T, ? extends Field<T17>> f17
|
||||
) {
|
||||
return Collectors.collectingAndThen(collecting(f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17), l -> l.toArray(new Row17[0]));
|
||||
return Collectors.collectingAndThen(toRowList(f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17), l -> l.toArray(new Row17[0]));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a collector that can collect into a list of {@link Row17}.
|
||||
*/
|
||||
public static <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17> Collector<T, ?, List<Row17<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17>>> collecting(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17> Collector<T, ?, List<Row17<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17>>> toRowList(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -794,10 +743,7 @@ public final class Rows {
|
||||
return Collector.of(
|
||||
ArrayList::new,
|
||||
(l, t) -> l.add(DSL.row(f1.apply(t), f2.apply(t), f3.apply(t), f4.apply(t), f5.apply(t), f6.apply(t), f7.apply(t), f8.apply(t), f9.apply(t), f10.apply(t), f11.apply(t), f12.apply(t), f13.apply(t), f14.apply(t), f15.apply(t), f16.apply(t), f17.apply(t))),
|
||||
(t1, t2) -> {
|
||||
t1.addAll(t2);
|
||||
return t1;
|
||||
}
|
||||
listCombiner()
|
||||
);
|
||||
}
|
||||
|
||||
@ -805,7 +751,7 @@ public final class Rows {
|
||||
* Create a collector that can collect into an array of {@link Row18}.
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18> Collector<T, ?, Row18<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18>[]> collectingArray(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18> Collector<T, ?, Row18<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18>[]> toRowArray(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -825,13 +771,13 @@ public final class Rows {
|
||||
Function<? super T, ? extends Field<T17>> f17,
|
||||
Function<? super T, ? extends Field<T18>> f18
|
||||
) {
|
||||
return Collectors.collectingAndThen(collecting(f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18), l -> l.toArray(new Row18[0]));
|
||||
return Collectors.collectingAndThen(toRowList(f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18), l -> l.toArray(new Row18[0]));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a collector that can collect into a list of {@link Row18}.
|
||||
*/
|
||||
public static <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18> Collector<T, ?, List<Row18<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18>>> collecting(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18> Collector<T, ?, List<Row18<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18>>> toRowList(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -854,10 +800,7 @@ public final class Rows {
|
||||
return Collector.of(
|
||||
ArrayList::new,
|
||||
(l, t) -> l.add(DSL.row(f1.apply(t), f2.apply(t), f3.apply(t), f4.apply(t), f5.apply(t), f6.apply(t), f7.apply(t), f8.apply(t), f9.apply(t), f10.apply(t), f11.apply(t), f12.apply(t), f13.apply(t), f14.apply(t), f15.apply(t), f16.apply(t), f17.apply(t), f18.apply(t))),
|
||||
(t1, t2) -> {
|
||||
t1.addAll(t2);
|
||||
return t1;
|
||||
}
|
||||
listCombiner()
|
||||
);
|
||||
}
|
||||
|
||||
@ -865,7 +808,7 @@ public final class Rows {
|
||||
* Create a collector that can collect into an array of {@link Row19}.
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19> Collector<T, ?, Row19<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19>[]> collectingArray(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19> Collector<T, ?, Row19<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19>[]> toRowArray(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -886,13 +829,13 @@ public final class Rows {
|
||||
Function<? super T, ? extends Field<T18>> f18,
|
||||
Function<? super T, ? extends Field<T19>> f19
|
||||
) {
|
||||
return Collectors.collectingAndThen(collecting(f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19), l -> l.toArray(new Row19[0]));
|
||||
return Collectors.collectingAndThen(toRowList(f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19), l -> l.toArray(new Row19[0]));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a collector that can collect into a list of {@link Row19}.
|
||||
*/
|
||||
public static <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19> Collector<T, ?, List<Row19<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19>>> collecting(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19> Collector<T, ?, List<Row19<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19>>> toRowList(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -916,10 +859,7 @@ public final class Rows {
|
||||
return Collector.of(
|
||||
ArrayList::new,
|
||||
(l, t) -> l.add(DSL.row(f1.apply(t), f2.apply(t), f3.apply(t), f4.apply(t), f5.apply(t), f6.apply(t), f7.apply(t), f8.apply(t), f9.apply(t), f10.apply(t), f11.apply(t), f12.apply(t), f13.apply(t), f14.apply(t), f15.apply(t), f16.apply(t), f17.apply(t), f18.apply(t), f19.apply(t))),
|
||||
(t1, t2) -> {
|
||||
t1.addAll(t2);
|
||||
return t1;
|
||||
}
|
||||
listCombiner()
|
||||
);
|
||||
}
|
||||
|
||||
@ -927,7 +867,7 @@ public final class Rows {
|
||||
* Create a collector that can collect into an array of {@link Row20}.
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20> Collector<T, ?, Row20<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20>[]> collectingArray(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20> Collector<T, ?, Row20<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20>[]> toRowArray(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -949,13 +889,13 @@ public final class Rows {
|
||||
Function<? super T, ? extends Field<T19>> f19,
|
||||
Function<? super T, ? extends Field<T20>> f20
|
||||
) {
|
||||
return Collectors.collectingAndThen(collecting(f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20), l -> l.toArray(new Row20[0]));
|
||||
return Collectors.collectingAndThen(toRowList(f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20), l -> l.toArray(new Row20[0]));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a collector that can collect into a list of {@link Row20}.
|
||||
*/
|
||||
public static <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20> Collector<T, ?, List<Row20<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20>>> collecting(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20> Collector<T, ?, List<Row20<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20>>> toRowList(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -980,10 +920,7 @@ public final class Rows {
|
||||
return Collector.of(
|
||||
ArrayList::new,
|
||||
(l, t) -> l.add(DSL.row(f1.apply(t), f2.apply(t), f3.apply(t), f4.apply(t), f5.apply(t), f6.apply(t), f7.apply(t), f8.apply(t), f9.apply(t), f10.apply(t), f11.apply(t), f12.apply(t), f13.apply(t), f14.apply(t), f15.apply(t), f16.apply(t), f17.apply(t), f18.apply(t), f19.apply(t), f20.apply(t))),
|
||||
(t1, t2) -> {
|
||||
t1.addAll(t2);
|
||||
return t1;
|
||||
}
|
||||
listCombiner()
|
||||
);
|
||||
}
|
||||
|
||||
@ -991,7 +928,7 @@ public final class Rows {
|
||||
* Create a collector that can collect into an array of {@link Row21}.
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21> Collector<T, ?, Row21<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21>[]> collectingArray(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21> Collector<T, ?, Row21<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21>[]> toRowArray(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -1014,13 +951,13 @@ public final class Rows {
|
||||
Function<? super T, ? extends Field<T20>> f20,
|
||||
Function<? super T, ? extends Field<T21>> f21
|
||||
) {
|
||||
return Collectors.collectingAndThen(collecting(f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21), l -> l.toArray(new Row21[0]));
|
||||
return Collectors.collectingAndThen(toRowList(f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21), l -> l.toArray(new Row21[0]));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a collector that can collect into a list of {@link Row21}.
|
||||
*/
|
||||
public static <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21> Collector<T, ?, List<Row21<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21>>> collecting(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21> Collector<T, ?, List<Row21<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21>>> toRowList(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -1046,10 +983,7 @@ public final class Rows {
|
||||
return Collector.of(
|
||||
ArrayList::new,
|
||||
(l, t) -> l.add(DSL.row(f1.apply(t), f2.apply(t), f3.apply(t), f4.apply(t), f5.apply(t), f6.apply(t), f7.apply(t), f8.apply(t), f9.apply(t), f10.apply(t), f11.apply(t), f12.apply(t), f13.apply(t), f14.apply(t), f15.apply(t), f16.apply(t), f17.apply(t), f18.apply(t), f19.apply(t), f20.apply(t), f21.apply(t))),
|
||||
(t1, t2) -> {
|
||||
t1.addAll(t2);
|
||||
return t1;
|
||||
}
|
||||
listCombiner()
|
||||
);
|
||||
}
|
||||
|
||||
@ -1057,7 +991,7 @@ public final class Rows {
|
||||
* Create a collector that can collect into an array of {@link Row22}.
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22> Collector<T, ?, Row22<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22>[]> collectingArray(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22> Collector<T, ?, Row22<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22>[]> toRowArray(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -1081,13 +1015,13 @@ public final class Rows {
|
||||
Function<? super T, ? extends Field<T21>> f21,
|
||||
Function<? super T, ? extends Field<T22>> f22
|
||||
) {
|
||||
return Collectors.collectingAndThen(collecting(f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22), l -> l.toArray(new Row22[0]));
|
||||
return Collectors.collectingAndThen(toRowList(f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22), l -> l.toArray(new Row22[0]));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a collector that can collect into a list of {@link Row22}.
|
||||
*/
|
||||
public static <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22> Collector<T, ?, List<Row22<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22>>> collecting(
|
||||
public static final <T, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22> Collector<T, ?, List<Row22<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22>>> toRowList(
|
||||
Function<? super T, ? extends Field<T1>> f1,
|
||||
Function<? super T, ? extends Field<T2>> f2,
|
||||
Function<? super T, ? extends Field<T3>> f3,
|
||||
@ -1114,12 +1048,16 @@ public final class Rows {
|
||||
return Collector.of(
|
||||
ArrayList::new,
|
||||
(l, t) -> l.add(DSL.row(f1.apply(t), f2.apply(t), f3.apply(t), f4.apply(t), f5.apply(t), f6.apply(t), f7.apply(t), f8.apply(t), f9.apply(t), f10.apply(t), f11.apply(t), f12.apply(t), f13.apply(t), f14.apply(t), f15.apply(t), f16.apply(t), f17.apply(t), f18.apply(t), f19.apply(t), f20.apply(t), f21.apply(t), f22.apply(t))),
|
||||
(t1, t2) -> {
|
||||
t1.addAll(t2);
|
||||
return t1;
|
||||
}
|
||||
listCombiner()
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
|
||||
private static final <T> BinaryOperator<List<T>> listCombiner() {
|
||||
return (t1, t2) -> {
|
||||
t1.addAll(t2);
|
||||
return t1;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
@ -27486,6 +27486,8 @@ public class DSL {
|
||||
* <p>
|
||||
* Use {@link Table#as(String, String...)} to rename the resulting table and
|
||||
* its columns.
|
||||
*
|
||||
* @see Rows#toRowArray(Function...)
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
@ -27539,6 +27541,8 @@ public class DSL {
|
||||
* <p>
|
||||
* Use {@link Table#as(String, String...)} to rename the resulting table and
|
||||
* its columns.
|
||||
*
|
||||
* @see Rows#toRowArray(Function)
|
||||
*/
|
||||
@SafeVarargs
|
||||
@NotNull
|
||||
@ -27572,6 +27576,8 @@ public class DSL {
|
||||
* <p>
|
||||
* Use {@link Table#as(String, String...)} to rename the resulting table and
|
||||
* its columns.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function)
|
||||
*/
|
||||
@SafeVarargs
|
||||
@NotNull
|
||||
@ -27605,6 +27611,8 @@ public class DSL {
|
||||
* <p>
|
||||
* Use {@link Table#as(String, String...)} to rename the resulting table and
|
||||
* its columns.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function)
|
||||
*/
|
||||
@SafeVarargs
|
||||
@NotNull
|
||||
@ -27638,6 +27646,8 @@ public class DSL {
|
||||
* <p>
|
||||
* Use {@link Table#as(String, String...)} to rename the resulting table and
|
||||
* its columns.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function)
|
||||
*/
|
||||
@SafeVarargs
|
||||
@NotNull
|
||||
@ -27671,6 +27681,8 @@ public class DSL {
|
||||
* <p>
|
||||
* Use {@link Table#as(String, String...)} to rename the resulting table and
|
||||
* its columns.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SafeVarargs
|
||||
@NotNull
|
||||
@ -27704,6 +27716,8 @@ public class DSL {
|
||||
* <p>
|
||||
* Use {@link Table#as(String, String...)} to rename the resulting table and
|
||||
* its columns.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SafeVarargs
|
||||
@NotNull
|
||||
@ -27737,6 +27751,8 @@ public class DSL {
|
||||
* <p>
|
||||
* Use {@link Table#as(String, String...)} to rename the resulting table and
|
||||
* its columns.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SafeVarargs
|
||||
@NotNull
|
||||
@ -27770,6 +27786,8 @@ public class DSL {
|
||||
* <p>
|
||||
* Use {@link Table#as(String, String...)} to rename the resulting table and
|
||||
* its columns.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SafeVarargs
|
||||
@NotNull
|
||||
@ -27803,6 +27821,8 @@ public class DSL {
|
||||
* <p>
|
||||
* Use {@link Table#as(String, String...)} to rename the resulting table and
|
||||
* its columns.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SafeVarargs
|
||||
@NotNull
|
||||
@ -27836,6 +27856,8 @@ public class DSL {
|
||||
* <p>
|
||||
* Use {@link Table#as(String, String...)} to rename the resulting table and
|
||||
* its columns.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SafeVarargs
|
||||
@NotNull
|
||||
@ -27869,6 +27891,8 @@ public class DSL {
|
||||
* <p>
|
||||
* Use {@link Table#as(String, String...)} to rename the resulting table and
|
||||
* its columns.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SafeVarargs
|
||||
@NotNull
|
||||
@ -27902,6 +27926,8 @@ public class DSL {
|
||||
* <p>
|
||||
* Use {@link Table#as(String, String...)} to rename the resulting table and
|
||||
* its columns.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SafeVarargs
|
||||
@NotNull
|
||||
@ -27935,6 +27961,8 @@ public class DSL {
|
||||
* <p>
|
||||
* Use {@link Table#as(String, String...)} to rename the resulting table and
|
||||
* its columns.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SafeVarargs
|
||||
@NotNull
|
||||
@ -27968,6 +27996,8 @@ public class DSL {
|
||||
* <p>
|
||||
* Use {@link Table#as(String, String...)} to rename the resulting table and
|
||||
* its columns.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SafeVarargs
|
||||
@NotNull
|
||||
@ -28001,6 +28031,8 @@ public class DSL {
|
||||
* <p>
|
||||
* Use {@link Table#as(String, String...)} to rename the resulting table and
|
||||
* its columns.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SafeVarargs
|
||||
@NotNull
|
||||
@ -28034,6 +28066,8 @@ public class DSL {
|
||||
* <p>
|
||||
* Use {@link Table#as(String, String...)} to rename the resulting table and
|
||||
* its columns.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SafeVarargs
|
||||
@NotNull
|
||||
@ -28067,6 +28101,8 @@ public class DSL {
|
||||
* <p>
|
||||
* Use {@link Table#as(String, String...)} to rename the resulting table and
|
||||
* its columns.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SafeVarargs
|
||||
@NotNull
|
||||
@ -28100,6 +28136,8 @@ public class DSL {
|
||||
* <p>
|
||||
* Use {@link Table#as(String, String...)} to rename the resulting table and
|
||||
* its columns.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SafeVarargs
|
||||
@NotNull
|
||||
@ -28133,6 +28171,8 @@ public class DSL {
|
||||
* <p>
|
||||
* Use {@link Table#as(String, String...)} to rename the resulting table and
|
||||
* its columns.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SafeVarargs
|
||||
@NotNull
|
||||
@ -28166,6 +28206,8 @@ public class DSL {
|
||||
* <p>
|
||||
* Use {@link Table#as(String, String...)} to rename the resulting table and
|
||||
* its columns.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SafeVarargs
|
||||
@NotNull
|
||||
@ -28199,6 +28241,8 @@ public class DSL {
|
||||
* <p>
|
||||
* Use {@link Table#as(String, String...)} to rename the resulting table and
|
||||
* its columns.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SafeVarargs
|
||||
@NotNull
|
||||
@ -28232,6 +28276,8 @@ public class DSL {
|
||||
* <p>
|
||||
* Use {@link Table#as(String, String...)} to rename the resulting table and
|
||||
* its columns.
|
||||
*
|
||||
* @see Rows#toRowArray(Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function, Function)
|
||||
*/
|
||||
@SafeVarargs
|
||||
@NotNull
|
||||
|
||||
Loading…
Reference in New Issue
Block a user