public final class Functions
extends java.lang.Object
Modifier and Type | Class and Description |
---|---|
static class |
Functions.Function0<R>
Encapsulates a method that has no parameters and returns a value of the type specified by the R parameter.
|
static class |
Functions.Function1<T1,R>
Encapsulates a method that has a single parameter and returns a value of the type specified by the R parameter.
|
static class |
Functions.Function2<T1,T2,R>
Encapsulates a method that has two parameters and returns a value of the type specified by the R parameter.
|
static class |
Functions.Function3<T1,T2,T3,R>
Encapsulates a method that has three parameters and returns a value of the type specified by the R parameter.
|
static class |
Functions.Function4<T1,T2,T3,T4,R>
Encapsulates a method that has four parameters and returns a value of the type specified by the R parameter.
|
static class |
Functions.Function5<T1,T2,T3,T4,T5,R>
Encapsulates a method that has five parameters and returns a value of the type specified by the R parameter.
|
static class |
Functions.Function6<T1,T2,T3,T4,T5,T6,R>
Encapsulates a method that has six parameters and returns a value of the type specified by the R parameter.
|
static class |
Functions.Function7<T1,T2,T3,T4,T5,T6,T7,R>
Encapsulates a method that has seven parameters and returns a value of the type specified by the R parameter.
|
static class |
Functions.Function8<T1,T2,T3,T4,T5,T6,T7,T8,R>
Encapsulates a method that has eight parameters and returns a value of the type specified by the R parameter.
|
Constructor and Description |
---|
Functions() |