public final class BinaryOperators extends Object
BinaryOperator interface.| Modifier and Type | Method and Description |
|---|---|
static <T> BinaryOperator<T> |
maxBy(Comparator<? super T> comparator)
Returns a
BinaryOperator which returns the greater of two elements
according to the specified Comparator. |
static <T> BinaryOperator<T> |
minBy(Comparator<? super T> comparator)
Returns a
BinaryOperator which returns the lesser of two elements
according to the specified Comparator. |
public static <T> BinaryOperator<T> minBy(Comparator<? super T> comparator)
BinaryOperator which returns the lesser of two elements
according to the specified Comparator.T - the type of the input arguments of the comparatorcomparator - a Comparator for comparing the two valuesBinaryOperator which returns the lesser of its operands,
according to the supplied ComparatorNullPointerException - if the argument is nullpublic static <T> BinaryOperator<T> maxBy(Comparator<? super T> comparator)
BinaryOperator which returns the greater of two elements
according to the specified Comparator.T - the type of the input arguments of the comparatorcomparator - a Comparator for comparing the two valuesBinaryOperator which returns the greater of its operands,
according to the supplied ComparatorNullPointerException - if the argument is nullCopyright © 2015. All rights reserved.