Interface SerializableBinaryOperator<T>
-
- All Superinterfaces:
java.util.function.BiFunction<T,T,T>,java.util.function.BinaryOperator<T>,java.io.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 java.util.function.BinaryOperator<T>, java.io.SerializableSerializable version ofSerializableBinaryOperator
-
-
Method Summary
Static Methods Modifier and Type Method Description static <T> SerializableBinaryOperator<T>maxBy(java.util.Comparator<? super T> comparator)Returns aSerializableBinaryOperatorwhich returns the greater of two elements according to the specifiedComparator.static <T> SerializableBinaryOperator<T>minBy(java.util.Comparator<? super T> comparator)Returns aSerializableBinaryOperatorwhich returns the lesser of two elements according to the specifiedComparator.
-
-
-
Method Detail
-
minBy
static <T> SerializableBinaryOperator<T> minBy(java.util.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:
java.lang.NullPointerException- if the argument is null
-
maxBy
static <T> SerializableBinaryOperator<T> maxBy(java.util.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:
java.lang.NullPointerException- if the argument is null
-
-