| Constructor and Description |
|---|
Triples() |
| Modifier and Type | Method and Description |
|---|---|
static <T,U,V> TriConsumer<T,U,V> |
untupled(Consumer<Triple<T,U,V>> consumer)
Adapts an consumer accepting a triple to a ternary consumer.
|
static <T,U,V,R> TriFunction<T,U,V,R> |
untupled(Function<Triple<T,U,V>,R> function)
Adapts a function accepting a triple to a ternary function.
|
static <T,U,V> TriPredicate<T,U,V> |
untupled(Predicate<Triple<T,U,V>> predicate)
Adapts a predicate accepting a triple to a ternary predicate.
|
public static <T,U,V,R> TriFunction<T,U,V,R> untupled(Function<Triple<T,U,V>,R> function)
T - the function first parameter typeU - the function second parameter typeV - the function third parameter typeR - the function return typefunction - the function to be adaptedpublic static <T,U,V> TriPredicate<T,U,V> untupled(Predicate<Triple<T,U,V>> predicate)
T - the predicate first parameter typeU - the predicate second parameter typeV - the predicate third parameter typepredicate - the predicate to be adaptedpublic static <T,U,V> TriConsumer<T,U,V> untupled(Consumer<Triple<T,U,V>> consumer)
T - the consumer first parameter typeU - the consumer second parameter typeV - the consumer third parameter typeconsumer - the consumer to be adaptedCopyright © 2017. All rights reserved.