Interface SerializableBinaryOperator<T>
-
- All Superinterfaces:
BiFunction<T,T,T>,BinaryOperator<T>,Serializable
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface SerializableBinaryOperator<T> extends BinaryOperator<T>, Serializable
Serializable version ofSerializableBinaryOperator- Author:
- Jakub Danek (www.danekja.org)
-
-
Method Summary
Static Methods Modifier and Type Method Description static <T> SerializableBinaryOperator<T>maxBy(Comparator<? super T> comparator)Returns aSerializableBinaryOperatorwhich returns the greater of two elements according to the specifiedComparator.static <T> SerializableBinaryOperator<T>minBy(Comparator<? super T> comparator)Returns aSerializableBinaryOperatorwhich returns the lesser of two elements according to the specifiedComparator.-
Methods inherited from interface java.util.function.BiFunction
andThen, apply
-
-
-
-
Method Detail
-
minBy
static <T> SerializableBinaryOperator<T> minBy(Comparator<? super T> comparator)
Returns aSerializableBinaryOperatorwhich returns the lesser of two elements according to the specifiedComparator.- Type Parameters:
T- the type of the input arguments of the comparator- Parameters:
comparator- aComparatorfor comparing the two values- Returns:
- a
SerializableBinaryOperatorwhich returns the lesser of its operands, according to the suppliedComparator - Throws:
NullPointerException- if the argument is null
-
maxBy
static <T> SerializableBinaryOperator<T> maxBy(Comparator<? super T> comparator)
Returns aSerializableBinaryOperatorwhich returns the greater of two elements according to the specifiedComparator.- Type Parameters:
T- the type of the input arguments of the comparator- Parameters:
comparator- aComparatorfor comparing the two values- Returns:
- a
SerializableBinaryOperatorwhich returns the greater of its operands, according to the suppliedComparator - Throws:
NullPointerException- if the argument is null
-
-