[jOOQ/jOOQ#13070] Change Function[N] to be non-experimental

This commit is contained in:
Lukas Eder 2022-02-15 08:43:53 +01:00
parent c64f5e9344
commit c086c93e24
22 changed files with 0 additions and 88 deletions

View File

@ -41,13 +41,9 @@ import java.util.function.Function;
/**
* A function of degree 1.
* <p>
* This is EXPERIMENTAL API. Future jOOQ versions may instead use the
* functional interfaces from jOOλ, and remove these types again.
*
* @author Lukas Eder
*/
@Internal
@FunctionalInterface
public interface Function1<T1, R> extends Function<T1, R> {

View File

@ -39,13 +39,9 @@ package org.jooq;
/**
* A function of degree 10.
* <p>
* This is EXPERIMENTAL API. Future jOOQ versions may instead use the
* functional interfaces from jOOλ, and remove these types again.
*
* @author Lukas Eder
*/
@Internal
@FunctionalInterface
public interface Function10<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, R> {

View File

@ -39,13 +39,9 @@ package org.jooq;
/**
* A function of degree 11.
* <p>
* This is EXPERIMENTAL API. Future jOOQ versions may instead use the
* functional interfaces from jOOλ, and remove these types again.
*
* @author Lukas Eder
*/
@Internal
@FunctionalInterface
public interface Function11<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, R> {

View File

@ -39,13 +39,9 @@ package org.jooq;
/**
* A function of degree 12.
* <p>
* This is EXPERIMENTAL API. Future jOOQ versions may instead use the
* functional interfaces from jOOλ, and remove these types again.
*
* @author Lukas Eder
*/
@Internal
@FunctionalInterface
public interface Function12<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, R> {

View File

@ -39,13 +39,9 @@ package org.jooq;
/**
* A function of degree 13.
* <p>
* This is EXPERIMENTAL API. Future jOOQ versions may instead use the
* functional interfaces from jOOλ, and remove these types again.
*
* @author Lukas Eder
*/
@Internal
@FunctionalInterface
public interface Function13<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, R> {

View File

@ -39,13 +39,9 @@ package org.jooq;
/**
* A function of degree 14.
* <p>
* This is EXPERIMENTAL API. Future jOOQ versions may instead use the
* functional interfaces from jOOλ, and remove these types again.
*
* @author Lukas Eder
*/
@Internal
@FunctionalInterface
public interface Function14<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, R> {

View File

@ -39,13 +39,9 @@ package org.jooq;
/**
* A function of degree 15.
* <p>
* This is EXPERIMENTAL API. Future jOOQ versions may instead use the
* functional interfaces from jOOλ, and remove these types again.
*
* @author Lukas Eder
*/
@Internal
@FunctionalInterface
public interface Function15<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, R> {

View File

@ -39,13 +39,9 @@ package org.jooq;
/**
* A function of degree 16.
* <p>
* This is EXPERIMENTAL API. Future jOOQ versions may instead use the
* functional interfaces from jOOλ, and remove these types again.
*
* @author Lukas Eder
*/
@Internal
@FunctionalInterface
public interface Function16<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, R> {

View File

@ -39,13 +39,9 @@ package org.jooq;
/**
* A function of degree 17.
* <p>
* This is EXPERIMENTAL API. Future jOOQ versions may instead use the
* functional interfaces from jOOλ, and remove these types again.
*
* @author Lukas Eder
*/
@Internal
@FunctionalInterface
public interface Function17<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, R> {

View File

@ -39,13 +39,9 @@ package org.jooq;
/**
* A function of degree 18.
* <p>
* This is EXPERIMENTAL API. Future jOOQ versions may instead use the
* functional interfaces from jOOλ, and remove these types again.
*
* @author Lukas Eder
*/
@Internal
@FunctionalInterface
public interface Function18<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, R> {

View File

@ -39,13 +39,9 @@ package org.jooq;
/**
* A function of degree 19.
* <p>
* This is EXPERIMENTAL API. Future jOOQ versions may instead use the
* functional interfaces from jOOλ, and remove these types again.
*
* @author Lukas Eder
*/
@Internal
@FunctionalInterface
public interface Function19<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, R> {

View File

@ -41,13 +41,9 @@ import java.util.function.BiFunction;
/**
* A function of degree 2.
* <p>
* This is EXPERIMENTAL API. Future jOOQ versions may instead use the
* functional interfaces from jOOλ, and remove these types again.
*
* @author Lukas Eder
*/
@Internal
@FunctionalInterface
public interface Function2<T1, T2, R> extends BiFunction<T1, T2, R> {

View File

@ -39,13 +39,9 @@ package org.jooq;
/**
* A function of degree 20.
* <p>
* This is EXPERIMENTAL API. Future jOOQ versions may instead use the
* functional interfaces from jOOλ, and remove these types again.
*
* @author Lukas Eder
*/
@Internal
@FunctionalInterface
public interface Function20<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, R> {

View File

@ -39,13 +39,9 @@ package org.jooq;
/**
* A function of degree 21.
* <p>
* This is EXPERIMENTAL API. Future jOOQ versions may instead use the
* functional interfaces from jOOλ, and remove these types again.
*
* @author Lukas Eder
*/
@Internal
@FunctionalInterface
public interface Function21<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, R> {

View File

@ -39,13 +39,9 @@ package org.jooq;
/**
* A function of degree 22.
* <p>
* This is EXPERIMENTAL API. Future jOOQ versions may instead use the
* functional interfaces from jOOλ, and remove these types again.
*
* @author Lukas Eder
*/
@Internal
@FunctionalInterface
public interface Function22<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, R> {

View File

@ -39,13 +39,9 @@ package org.jooq;
/**
* A function of degree 3.
* <p>
* This is EXPERIMENTAL API. Future jOOQ versions may instead use the
* functional interfaces from jOOλ, and remove these types again.
*
* @author Lukas Eder
*/
@Internal
@FunctionalInterface
public interface Function3<T1, T2, T3, R> {

View File

@ -39,13 +39,9 @@ package org.jooq;
/**
* A function of degree 4.
* <p>
* This is EXPERIMENTAL API. Future jOOQ versions may instead use the
* functional interfaces from jOOλ, and remove these types again.
*
* @author Lukas Eder
*/
@Internal
@FunctionalInterface
public interface Function4<T1, T2, T3, T4, R> {

View File

@ -39,13 +39,9 @@ package org.jooq;
/**
* A function of degree 5.
* <p>
* This is EXPERIMENTAL API. Future jOOQ versions may instead use the
* functional interfaces from jOOλ, and remove these types again.
*
* @author Lukas Eder
*/
@Internal
@FunctionalInterface
public interface Function5<T1, T2, T3, T4, T5, R> {

View File

@ -39,13 +39,9 @@ package org.jooq;
/**
* A function of degree 6.
* <p>
* This is EXPERIMENTAL API. Future jOOQ versions may instead use the
* functional interfaces from jOOλ, and remove these types again.
*
* @author Lukas Eder
*/
@Internal
@FunctionalInterface
public interface Function6<T1, T2, T3, T4, T5, T6, R> {

View File

@ -39,13 +39,9 @@ package org.jooq;
/**
* A function of degree 7.
* <p>
* This is EXPERIMENTAL API. Future jOOQ versions may instead use the
* functional interfaces from jOOλ, and remove these types again.
*
* @author Lukas Eder
*/
@Internal
@FunctionalInterface
public interface Function7<T1, T2, T3, T4, T5, T6, T7, R> {

View File

@ -39,13 +39,9 @@ package org.jooq;
/**
* A function of degree 8.
* <p>
* This is EXPERIMENTAL API. Future jOOQ versions may instead use the
* functional interfaces from jOOλ, and remove these types again.
*
* @author Lukas Eder
*/
@Internal
@FunctionalInterface
public interface Function8<T1, T2, T3, T4, T5, T6, T7, T8, R> {

View File

@ -39,13 +39,9 @@ package org.jooq;
/**
* A function of degree 9.
* <p>
* This is EXPERIMENTAL API. Future jOOQ versions may instead use the
* functional interfaces from jOOλ, and remove these types again.
*
* @author Lukas Eder
*/
@Internal
@FunctionalInterface
public interface Function9<T1, T2, T3, T4, T5, T6, T7, T8, T9, R> {