Uses of Interface
org.jooq.lambda.function.Function8
-
Packages that use Function8 Package Description org.jooq.lambda This package contains useful extensions for interoperation with Java 8's lambda expressions andFunctionalInterface
types.org.jooq.lambda.function This package contains function types of various degrees.org.jooq.lambda.tuple This package contains tuple types of various degrees. -
-
Uses of Function8 in org.jooq.lambda
Methods in org.jooq.lambda with parameters of type Function8 Modifier and Type Method Description static <T1,T2,T3,T4,T5,T6,T7,T8,R>
Seq<R>Seq. zip(java.lang.Iterable<? extends T1> i1, java.lang.Iterable<? extends T2> i2, java.lang.Iterable<? extends T3> i3, java.lang.Iterable<? extends T4> i4, java.lang.Iterable<? extends T5> i5, java.lang.Iterable<? extends T6> i6, java.lang.Iterable<? extends T7> i7, java.lang.Iterable<? extends T8> i8, Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R> zipper)
Zip 8 streams into one using aFunction8
to produce resulting values.static <T1,T2,T3,T4,T5,T6,T7,T8,R>
Seq<R>Seq. zip(java.util.stream.Stream<? extends T1> s1, java.util.stream.Stream<? extends T2> s2, java.util.stream.Stream<? extends T3> s3, java.util.stream.Stream<? extends T4> s4, java.util.stream.Stream<? extends T5> s5, java.util.stream.Stream<? extends T6> s6, java.util.stream.Stream<? extends T7> s7, java.util.stream.Stream<? extends T8> s8, Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R> zipper)
Zip 8 streams into one using aFunction8
to produce resulting values.static <T1,T2,T3,T4,T5,T6,T7,T8,R>
Seq<R>Seq. zip(Seq<? extends T1> s1, Seq<? extends T2> s2, Seq<? extends T3> s3, Seq<? extends T4> s4, Seq<? extends T5> s5, Seq<? extends T6> s6, Seq<? extends T7> s7, Seq<? extends T8> s8, Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R> zipper)
Zip 8 streams into one using aFunction8
to produce resulting values.static <T1,T2,T3,T4,T5,T6,T7,T8,R>
Seq<R>Seq. zipAll(java.lang.Iterable<? extends T1> s1, java.lang.Iterable<? extends T2> s2, java.lang.Iterable<? extends T3> s3, java.lang.Iterable<? extends T4> s4, java.lang.Iterable<? extends T5> s5, java.lang.Iterable<? extends T6> s6, java.lang.Iterable<? extends T7> s7, java.lang.Iterable<? extends T8> s8, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R> zipper)
Zip two streams into one - by storing the corresponding elements from them in a tuple, when one of streams will end - a default value for that stream will be provided instead - so the resulting stream will be as long as the longest of the two streams.static <T1,T2,T3,T4,T5,T6,T7,T8,R>
Seq<R>Seq. zipAll(java.util.stream.Stream<? extends T1> s1, java.util.stream.Stream<? extends T2> s2, java.util.stream.Stream<? extends T3> s3, java.util.stream.Stream<? extends T4> s4, java.util.stream.Stream<? extends T5> s5, java.util.stream.Stream<? extends T6> s6, java.util.stream.Stream<? extends T7> s7, java.util.stream.Stream<? extends T8> s8, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R> zipper)
Zip two streams into one - by storing the corresponding elements from them in a tuple, when one of streams will end - a default value for that stream will be provided instead - so the resulting stream will be as long as the longest of the two streams.static <T1,T2,T3,T4,T5,T6,T7,T8,R>
Seq<R>Seq. zipAll(Seq<? extends T1> s1, Seq<? extends T2> s2, Seq<? extends T3> s3, Seq<? extends T4> s4, Seq<? extends T5> s5, Seq<? extends T6> s6, Seq<? extends T7> s7, Seq<? extends T8> s8, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R> zipper)
Zip two streams into one using aBiFunction
to produce resulting values, when one of streams will end, a default value for that stream will be provided instead - so the resulting stream will be as long as the longest of the two streams. -
Uses of Function8 in org.jooq.lambda.function
Methods in org.jooq.lambda.function that return Function8 Modifier and Type Method Description default Function8<T3,T4,T5,T6,T7,T8,T9,T10,R>
Function10. applyPartially(Tuple2<? extends T1,? extends T2> args)
Partially apply this function to the arguments.default Function8<T3,T4,T5,T6,T7,T8,T9,T10,R>
Function10. applyPartially(T1 v1, T2 v2)
Partially apply this function to the arguments.default Function8<T4,T5,T6,T7,T8,T9,T10,T11,R>
Function11. applyPartially(Tuple3<? extends T1,? extends T2,? extends T3> args)
Partially apply this function to the arguments.default Function8<T4,T5,T6,T7,T8,T9,T10,T11,R>
Function11. applyPartially(T1 v1, T2 v2, T3 v3)
Partially apply this function to the arguments.default Function8<T5,T6,T7,T8,T9,T10,T11,T12,R>
Function12. applyPartially(Tuple4<? extends T1,? extends T2,? extends T3,? extends T4> args)
Partially apply this function to the arguments.default Function8<T5,T6,T7,T8,T9,T10,T11,T12,R>
Function12. applyPartially(T1 v1, T2 v2, T3 v3, T4 v4)
Partially apply this function to the arguments.default Function8<T6,T7,T8,T9,T10,T11,T12,T13,R>
Function13. applyPartially(Tuple5<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5> args)
Partially apply this function to the arguments.default Function8<T6,T7,T8,T9,T10,T11,T12,T13,R>
Function13. applyPartially(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5)
Partially apply this function to the arguments.default Function8<T7,T8,T9,T10,T11,T12,T13,T14,R>
Function14. applyPartially(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Partially apply this function to the arguments.default Function8<T7,T8,T9,T10,T11,T12,T13,T14,R>
Function14. applyPartially(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6)
Partially apply this function to the arguments.default Function8<T8,T9,T10,T11,T12,T13,T14,T15,R>
Function15. applyPartially(Tuple7<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6,? extends T7> args)
Partially apply this function to the arguments.default Function8<T8,T9,T10,T11,T12,T13,T14,T15,R>
Function15. applyPartially(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7)
Partially apply this function to the arguments.default Function8<T9,T10,T11,T12,T13,T14,T15,T16,R>
Function16. applyPartially(Tuple8<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6,? extends T7,? extends T8> args)
Partially apply this function to the arguments.default Function8<T9,T10,T11,T12,T13,T14,T15,T16,R>
Function16. applyPartially(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8)
Partially apply this function to the arguments.default Function8<T2,T3,T4,T5,T6,T7,T8,T9,R>
Function9. applyPartially(Tuple1<? extends T1> args)
Partially apply this function to the arguments.default Function8<T2,T3,T4,T5,T6,T7,T8,T9,R>
Function9. applyPartially(T1 v1)
Partially apply this function to the arguments.default Function8<T3,T4,T5,T6,T7,T8,T9,T10,R>
Function10. curry(Tuple2<? extends T1,? extends T2> args)
Deprecated.- UseFunction10.applyPartially(Tuple2)
instead.default Function8<T3,T4,T5,T6,T7,T8,T9,T10,R>
Function10. curry(T1 v1, T2 v2)
Deprecated.- UseFunction10.applyPartially(Object, Object)
instead.default Function8<T4,T5,T6,T7,T8,T9,T10,T11,R>
Function11. curry(Tuple3<? extends T1,? extends T2,? extends T3> args)
Deprecated.- UseFunction11.applyPartially(Tuple3)
instead.default Function8<T4,T5,T6,T7,T8,T9,T10,T11,R>
Function11. curry(T1 v1, T2 v2, T3 v3)
Deprecated.- UseFunction11.applyPartially(Object, Object, Object)
instead.default Function8<T5,T6,T7,T8,T9,T10,T11,T12,R>
Function12. curry(Tuple4<? extends T1,? extends T2,? extends T3,? extends T4> args)
Deprecated.- UseFunction12.applyPartially(Tuple4)
instead.default Function8<T5,T6,T7,T8,T9,T10,T11,T12,R>
Function12. curry(T1 v1, T2 v2, T3 v3, T4 v4)
Deprecated.- UseFunction12.applyPartially(Object, Object, Object, Object)
instead.default Function8<T6,T7,T8,T9,T10,T11,T12,T13,R>
Function13. curry(Tuple5<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5> args)
Deprecated.- UseFunction13.applyPartially(Tuple5)
instead.default Function8<T6,T7,T8,T9,T10,T11,T12,T13,R>
Function13. curry(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5)
Deprecated.default Function8<T7,T8,T9,T10,T11,T12,T13,T14,R>
Function14. curry(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Deprecated.- UseFunction14.applyPartially(Tuple6)
instead.default Function8<T7,T8,T9,T10,T11,T12,T13,T14,R>
Function14. curry(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6)
Deprecated.default Function8<T8,T9,T10,T11,T12,T13,T14,T15,R>
Function15. curry(Tuple7<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6,? extends T7> args)
Deprecated.- UseFunction15.applyPartially(Tuple7)
instead.default Function8<T8,T9,T10,T11,T12,T13,T14,T15,R>
Function15. curry(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7)
Deprecated.default Function8<T9,T10,T11,T12,T13,T14,T15,T16,R>
Function16. curry(Tuple8<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6,? extends T7,? extends T8> args)
Deprecated.- UseFunction16.applyPartially(Tuple8)
instead.default Function8<T9,T10,T11,T12,T13,T14,T15,T16,R>
Function16. curry(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8)
Deprecated.default Function8<T2,T3,T4,T5,T6,T7,T8,T9,R>
Function9. curry(Tuple1<? extends T1> args)
Deprecated.- UseFunction9.applyPartially(Tuple1)
instead.default Function8<T2,T3,T4,T5,T6,T7,T8,T9,R>
Function9. curry(T1 v1)
Deprecated.- UseFunction9.applyPartially(Object)
instead. -
Uses of Function8 in org.jooq.lambda.tuple
Methods in org.jooq.lambda.tuple with parameters of type Function8 Modifier and Type Method Description static <T1,T2,T3,T4,T5,T6,T7,T8,R>
Function1<Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>,R>Tuple. function(Function8<T1,T2,T3,T4,T5,T6,T7,T8,R> function)
Construct a tuple function of degree 8.<R> R
Tuple8. map(Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R> function)
Apply this tuple as arguments to a function.
-