public interface WithCompose
| Modifier and Type | Method and Description |
|---|---|
default <T1,T2,R> Function<T1,R> |
compose(Function<T1,T2> f1,
Function<T2,R> f2)
Compose function chain.
|
default <T1,T2,T3,R> |
compose(Function<T1,T2> f1,
Function<T2,T3> f2,
Function<T3,R> f3)
Compose function chain.
|
default <T1,T2,T3,T4,R> |
compose(Function<T1,T2> f1,
Function<T2,T3> f2,
Function<T3,T4> f3,
Function<T4,R> f4)
/** Compose function chain.
|
default <T1,T2,T3,T4,T5,R> |
compose(Function<T1,T2> f1,
Function<T2,T3> f2,
Function<T3,T4> f3,
Function<T4,T5> f4,
Function<T5,R> f5)
Compose function chain.
|
default <T1,T2,T3,T4,T5,T6,R> |
compose(Function<T1,T2> f1,
Function<T2,T3> f2,
Function<T3,T4> f3,
Function<T4,T5> f4,
Function<T5,T6> f5,
Function<T6,R> f6)
Compose function chain.
|
default <T1,T2,T3,T4,T5,T6,T7,R> |
compose(Function<T1,T2> f1,
Function<T2,T3> f2,
Function<T3,T4> f3,
Function<T4,T5> f4,
Function<T5,T6> f5,
Function<T6,T7> f6,
Function<T7,R> f7)
Compose function chain.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,R> |
compose(Function<T1,T2> f1,
Function<T2,T3> f2,
Function<T3,T4> f3,
Function<T4,T5> f4,
Function<T5,T6> f5,
Function<T6,T7> f6,
Function<T7,T8> f7,
Function<T8,R> f8)
Compose function chain.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9,R> |
compose(Function<T1,T2> f1,
Function<T2,T3> f2,
Function<T3,T4> f3,
Function<T4,T5> f4,
Function<T5,T6> f5,
Function<T6,T7> f6,
Function<T7,T8> f7,
Function<T8,T9> f8,
Function<T9,R> f9)
Compose function chain.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,R> |
compose(Function<T1,T2> f1,
Function<T2,T3> f2,
Function<T3,T4> f3,
Function<T4,T5> f4,
Function<T5,T6> f5,
Function<T6,T7> f6,
Function<T7,T8> f7,
Function<T8,T9> f8,
Function<T9,T10> f9,
Function<T10,R> f10)
Compose function chain.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,R> |
compose(Function<T1,T2> f1,
Function<T2,T3> f2,
Function<T3,T4> f3,
Function<T4,T5> f4,
Function<T5,T6> f5,
Function<T6,T7> f6,
Function<T7,T8> f7,
Function<T8,T9> f8,
Function<T9,T10> f9,
Function<T10,T11> f10,
Function<T11,R> f11)
Compose function chain.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,R> |
compose(Function<T1,T2> f1,
Function<T2,T3> f2,
Function<T3,T4> f3,
Function<T4,T5> f4,
Function<T5,T6> f5,
Function<T6,T7> f6,
Function<T7,T8> f7,
Function<T8,T9> f8,
Function<T9,T10> f9,
Function<T10,T11> f10,
Function<T11,T12> f11,
Function<T12,R> f12)
Compose function chain.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,R> |
compose(Function<T1,T2> f1,
Function<T2,T3> f2,
Function<T3,T4> f3,
Function<T4,T5> f4,
Function<T5,T6> f5,
Function<T6,T7> f6,
Function<T7,T8> f7,
Function<T8,T9> f8,
Function<T9,T10> f9,
Function<T10,T11> f10,
Function<T11,T12> f11,
Function<T12,T13> f12,
Function<T13,R> f13)
Compose function chain.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,R> |
compose(Function<T1,T2> f1,
Function<T2,T3> f2,
Function<T3,T4> f3,
Function<T4,T5> f4,
Function<T5,T6> f5,
Function<T6,T7> f6,
Function<T7,T8> f7,
Function<T8,T9> f8,
Function<T9,T10> f9,
Function<T10,T11> f10,
Function<T11,T12> f11,
Function<T12,T13> f12,
Function<T13,T14> f13,
Function<T14,R> f14)
Compose function chain.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,R> |
compose(Function<T1,T2> f1,
Function<T2,T3> f2,
Function<T3,T4> f3,
Function<T4,T5> f4,
Function<T5,T6> f5,
Function<T6,T7> f6,
Function<T7,T8> f7,
Function<T8,T9> f8,
Function<T9,T10> f9,
Function<T10,T11> f10,
Function<T11,T12> f11,
Function<T12,T13> f12,
Function<T13,T14> f13,
Function<T14,T15> f14,
Function<T15,R> f15)
Compose function chain.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,R> |
compose(Function<T1,T2> f1,
Function<T2,T3> f2,
Function<T3,T4> f3,
Function<T4,T5> f4,
Function<T5,T6> f5,
Function<T6,T7> f6,
Function<T7,T8> f7,
Function<T8,T9> f8,
Function<T9,T10> f9,
Function<T10,T11> f10,
Function<T11,T12> f11,
Function<T12,T13> f12,
Function<T13,T14> f13,
Function<T14,T15> f14,
Function<T15,T16> f15,
Function<T16,R> f16)
Compose function chain.
|
default <T> Function<T,T> |
compose(Function<T,T>... functions)
Compose function chain.
|
default <T> Function<T,T> compose(Function<T,T>... functions)
T - type of the function argument and resultfunctions - functions to composedefault <T1,T2,R> Function<T1,R> compose(Function<T1,T2> f1, Function<T2,R> f2)
T1 - type of 1st function argumentT2 - type of 2nd function argumentR - return typef1 - first functionf2 - second functiondefault <T1,T2,T3,R> Function<T1,R> compose(Function<T1,T2> f1, Function<T2,T3> f2, Function<T3,R> f3)
T1 - type of 1st function argumentT2 - type of 2nd function argumentT3 - type of 3th function argumentR - return typef1 - first functionf2 - second functionf3 - third functiondefault <T1,T2,T3,T4,R> Function<T1,R> compose(Function<T1,T2> f1, Function<T2,T3> f2, Function<T3,T4> f3, Function<T4,R> f4)
T1 - type of 1st function argumentT2 - type of 2nd function argumentT3 - type of 3th function argumentT4 - type of 4th function argumentR - return typef1 - first functionf2 - second functionf3 - third functionf4 - fourth functiondefault <T1,T2,T3,T4,T5,R> Function<T1,R> compose(Function<T1,T2> f1, Function<T2,T3> f2, Function<T3,T4> f3, Function<T4,T5> f4, Function<T5,R> f5)
T1 - type of 1st function argumentT2 - type of 2nd function argumentT3 - type of 3th function argumentT4 - type of 4th function argumentT5 - type of 5th function argumentR - return typef1 - first functionf2 - second functionf3 - third functionf4 - fourth functionf5 - fifth functiondefault <T1,T2,T3,T4,T5,T6,R> Function<T1,R> compose(Function<T1,T2> f1, Function<T2,T3> f2, Function<T3,T4> f3, Function<T4,T5> f4, Function<T5,T6> f5, Function<T6,R> f6)
T1 - type of 1st function argumentT2 - type of 2nd function argumentT3 - type of 3th function argumentT4 - type of 4th function argumentT5 - type of 5th function argumentT6 - type of 6th function argumentR - return typef1 - first functionf2 - second functionf3 - third functionf4 - fourth functionf5 - fifth functionf6 - sixth functiondefault <T1,T2,T3,T4,T5,T6,T7,R> Function<T1,R> compose(Function<T1,T2> f1, Function<T2,T3> f2, Function<T3,T4> f3, Function<T4,T5> f4, Function<T5,T6> f5, Function<T6,T7> f6, Function<T7,R> f7)
T1 - type of 1st function argumentT2 - type of 2nd function argumentT3 - type of 3th function argumentT4 - type of 4th function argumentT5 - type of 5th function argumentT6 - type of 6th function argumentT7 - type of 7th function argumentR - return typef1 - first functionf2 - second functionf3 - third functionf4 - fourth functionf5 - fifth functionf6 - sixth functionf7 - sixth functiondefault <T1,T2,T3,T4,T5,T6,T7,T8,R> Function<T1,R> compose(Function<T1,T2> f1, Function<T2,T3> f2, Function<T3,T4> f3, Function<T4,T5> f4, Function<T5,T6> f5, Function<T6,T7> f6, Function<T7,T8> f7, Function<T8,R> f8)
T1 - type of 1st function argumentT2 - type of 2nd function argumentT3 - type of 3th function argumentT4 - type of 4th function argumentT5 - type of 5th function argumentT6 - type of 6th function argumentT7 - type of 7th function argumentT8 - type of 8th function argumentR - return typef1 - first functionf2 - second functionf3 - third functionf4 - fourth functionf5 - fifth functionf6 - sixth functionf7 - sixth functionf8 - eighth functiondefault <T1,T2,T3,T4,T5,T6,T7,T8,T9,R> Function<T1,R> compose(Function<T1,T2> f1, Function<T2,T3> f2, Function<T3,T4> f3, Function<T4,T5> f4, Function<T5,T6> f5, Function<T6,T7> f6, Function<T7,T8> f7, Function<T8,T9> f8, Function<T9,R> f9)
T1 - type of 1st function argumentT2 - type of 2nd function argumentT3 - type of 3th function argumentT4 - type of 4th function argumentT5 - type of 5th function argumentT6 - type of 6th function argumentT7 - type of 7th function argumentT8 - type of 8th function argumentT9 - type of 9th function argumentR - return typef1 - first functionf2 - second functionf3 - third functionf4 - fourth functionf5 - fifth functionf6 - sixth functionf7 - sixth functionf8 - eighth functionf9 - ninth functiondefault <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,R> Function<T1,R> compose(Function<T1,T2> f1, Function<T2,T3> f2, Function<T3,T4> f3, Function<T4,T5> f4, Function<T5,T6> f5, Function<T6,T7> f6, Function<T7,T8> f7, Function<T8,T9> f8, Function<T9,T10> f9, Function<T10,R> f10)
T1 - type of 1st function argumentT2 - type of 2nd function argumentT3 - type of 3th function argumentT4 - type of 4th function argumentT5 - type of 5th function argumentT6 - type of 6th function argumentT7 - type of 7th function argumentT8 - type of 8th function argumentT9 - type of 9th function argumentT10 - type of 10th function argumentR - return typef1 - first functionf2 - second functionf3 - third functionf4 - fourth functionf5 - fifth functionf6 - sixth functionf7 - sixth functionf8 - eighth functionf9 - ninth functionf10 - tenth functiondefault <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,R> Function<T1,R> compose(Function<T1,T2> f1, Function<T2,T3> f2, Function<T3,T4> f3, Function<T4,T5> f4, Function<T5,T6> f5, Function<T6,T7> f6, Function<T7,T8> f7, Function<T8,T9> f8, Function<T9,T10> f9, Function<T10,T11> f10, Function<T11,R> f11)
T1 - type of 1st function argumentT2 - type of 2nd function argumentT3 - type of 3th function argumentT4 - type of 4th function argumentT5 - type of 5th function argumentT6 - type of 6th function argumentT7 - type of 7th function argumentT8 - type of 8th function argumentT9 - type of 9th function argumentT10 - type of 10th function argumentT11 - type of 11th function argumentR - return typef1 - first functionf2 - second functionf3 - third functionf4 - fourth functionf5 - fifth functionf6 - sixth functionf7 - sixth functionf8 - eighth functionf9 - ninth functionf10 - tenth functionf11 - eleventh functiondefault <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,R> Function<T1,R> compose(Function<T1,T2> f1, Function<T2,T3> f2, Function<T3,T4> f3, Function<T4,T5> f4, Function<T5,T6> f5, Function<T6,T7> f6, Function<T7,T8> f7, Function<T8,T9> f8, Function<T9,T10> f9, Function<T10,T11> f10, Function<T11,T12> f11, Function<T12,R> f12)
T1 - type of 1st function argumentT2 - type of 2nd function argumentT3 - type of 3th function argumentT4 - type of 4th function argumentT5 - type of 5th function argumentT6 - type of 6th function argumentT7 - type of 7th function argumentT8 - type of 8th function argumentT9 - type of 9th function argumentT10 - type of 10th function argumentT11 - type of 11th function argumentT12 - type of 12th function argumentR - return typef1 - first functionf2 - second functionf3 - third functionf4 - fourth functionf5 - fifth functionf6 - sixth functionf7 - sixth functionf8 - eighth functionf9 - ninth functionf10 - tenth functionf11 - eleventh functionf12 - twelfth functiondefault <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,R> Function<T1,R> compose(Function<T1,T2> f1, Function<T2,T3> f2, Function<T3,T4> f3, Function<T4,T5> f4, Function<T5,T6> f5, Function<T6,T7> f6, Function<T7,T8> f7, Function<T8,T9> f8, Function<T9,T10> f9, Function<T10,T11> f10, Function<T11,T12> f11, Function<T12,T13> f12, Function<T13,R> f13)
T1 - type of 1st function argumentT2 - type of 2nd function argumentT3 - type of 3th function argumentT4 - type of 4th function argumentT5 - type of 5th function argumentT6 - type of 6th function argumentT7 - type of 7th function argumentT8 - type of 8th function argumentT9 - type of 9th function argumentT10 - type of 10th function argumentT11 - type of 11th function argumentT12 - type of 12th function argumentT13 - type of 13th function argumentR - return typef1 - first functionf2 - second functionf3 - third functionf4 - fourth functionf5 - fifth functionf6 - sixth functionf7 - sixth functionf8 - eighth functionf9 - ninth functionf10 - tenth functionf11 - eleventh functionf12 - twelfth functionf13 - thirteenth functiondefault <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,R> Function<T1,R> compose(Function<T1,T2> f1, Function<T2,T3> f2, Function<T3,T4> f3, Function<T4,T5> f4, Function<T5,T6> f5, Function<T6,T7> f6, Function<T7,T8> f7, Function<T8,T9> f8, Function<T9,T10> f9, Function<T10,T11> f10, Function<T11,T12> f11, Function<T12,T13> f12, Function<T13,T14> f13, Function<T14,R> f14)
T1 - type of 1st function argumentT2 - type of 2nd function argumentT3 - type of 3th function argumentT4 - type of 4th function argumentT5 - type of 5th function argumentT6 - type of 6th function argumentT7 - type of 7th function argumentT8 - type of 8th function argumentT9 - type of 9th function argumentT10 - type of 10th function argumentT11 - type of 11th function argumentT12 - type of 12th function argumentT13 - type of 13th function argumentT14 - type of 14th function argumentR - return typef1 - first functionf2 - second functionf3 - third functionf4 - fourth functionf5 - fifth functionf6 - sixth functionf7 - sixth functionf8 - eighth functionf9 - ninth functionf10 - tenth functionf11 - eleventh functionf12 - twelfth functionf13 - thirteenth functionf14 - fourteenth functiondefault <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,R> Function<T1,R> compose(Function<T1,T2> f1, Function<T2,T3> f2, Function<T3,T4> f3, Function<T4,T5> f4, Function<T5,T6> f5, Function<T6,T7> f6, Function<T7,T8> f7, Function<T8,T9> f8, Function<T9,T10> f9, Function<T10,T11> f10, Function<T11,T12> f11, Function<T12,T13> f12, Function<T13,T14> f13, Function<T14,T15> f14, Function<T15,R> f15)
T1 - type of 1st function argumentT2 - type of 2nd function argumentT3 - type of 3th function argumentT4 - type of 4th function argumentT5 - type of 5th function argumentT6 - type of 6th function argumentT7 - type of 7th function argumentT8 - type of 8th function argumentT9 - type of 9th function argumentT10 - type of 10th function argumentT11 - type of 11th function argumentT12 - type of 12th function argumentT13 - type of 13th function argumentT14 - type of 14th function argumentT15 - type of 15th function argumentR - return typef1 - first functionf2 - second functionf3 - third functionf4 - fourth functionf5 - fifth functionf6 - sixth functionf7 - sixth functionf8 - eighth functionf9 - ninth functionf10 - tenth functionf11 - eleventh functionf12 - twelfth functionf13 - thirteenth functionf14 - fourteenth functionf15 - fifteenth functiondefault <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,R> Function<T1,R> compose(Function<T1,T2> f1, Function<T2,T3> f2, Function<T3,T4> f3, Function<T4,T5> f4, Function<T5,T6> f5, Function<T6,T7> f6, Function<T7,T8> f7, Function<T8,T9> f8, Function<T9,T10> f9, Function<T10,T11> f10, Function<T11,T12> f11, Function<T12,T13> f12, Function<T13,T14> f13, Function<T14,T15> f14, Function<T15,T16> f15, Function<T16,R> f16)
T1 - type of 1st function argumentT2 - type of 2nd function argumentT3 - type of 3th function argumentT4 - type of 4th function argumentT5 - type of 5th function argumentT6 - type of 6th function argumentT7 - type of 7th function argumentT8 - type of 8th function argumentT9 - type of 9th function argumentT10 - type of 10th function argumentT11 - type of 11th function argumentT12 - type of 12th function argumentT13 - type of 13th function argumentT14 - type of 14th function argumentT15 - type of 15th function argumentT16 - type of 16th function argumentR - return typef1 - first functionf2 - second functionf3 - third functionf4 - fourth functionf5 - fifth functionf6 - sixth functionf7 - sixth functionf8 - eighth functionf9 - ninth functionf10 - tenth functionf11 - eleventh functionf12 - twelfth functionf13 - thirteenth functionf14 - fourteenth functionf15 - fifteenth functionf16 - sixteenth functionCopyright © 2021. All rights reserved.