Modifier and Type | Method and Description |
---|---|
static <T,V,P> Function2<T,P,V> |
fromFunction(Function<? super T,? extends V> function) |
static Function2<Integer,Integer,Integer> |
integerAddition() |
static <T> Function2<T,T,T> |
max(Comparator<? super T> comparator) |
static <T,V extends Comparable<? super V>> |
maxBy(Function<? super T,? extends V> function) |
static <T> Function2<T,T,T> |
min(Comparator<? super T> comparator) |
static <T,V extends Comparable<? super V>> |
minBy(Function<? super T,? extends V> function) |
static <T,V,P> Function2<T,P,V> |
throwing(ThrowingFunction2<T,P,V> throwingFunction2) |
public static <T,V,P> Function2<T,P,V> fromFunction(Function<? super T,? extends V> function)
public static <T,V,P> Function2<T,P,V> throwing(ThrowingFunction2<T,P,V> throwingFunction2)
public static <T> Function2<T,T,T> min(Comparator<? super T> comparator)
public static <T> Function2<T,T,T> max(Comparator<? super T> comparator)
public static <T,V extends Comparable<? super V>> Function2<T,T,T> minBy(Function<? super T,? extends V> function)
public static <T,V extends Comparable<? super V>> Function2<T,T,T> maxBy(Function<? super T,? extends V> function)
Copyright © 2004–2016. All rights reserved.