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.Serializable
    Serializable version of SerializableBinaryOperator
    • Method Detail

      • minBy

        static <T> SerializableBinaryOperator<T> minBy​(java.util.Comparator<? super T> comparator)
        Returns a SerializableBinaryOperator which returns the lesser of two elements according to the specified Comparator.
        Type Parameters:
        T - the type of the input arguments of the comparator
        Parameters:
        comparator - a Comparator for comparing the two values
        Returns:
        a SerializableBinaryOperator which returns the lesser of its operands, according to the supplied Comparator
        Throws:
        java.lang.NullPointerException - if the argument is null
      • maxBy

        static <T> SerializableBinaryOperator<T> maxBy​(java.util.Comparator<? super T> comparator)
        Returns a SerializableBinaryOperator which returns the greater of two elements according to the specified Comparator.
        Type Parameters:
        T - the type of the input arguments of the comparator
        Parameters:
        comparator - a Comparator for comparing the two values
        Returns:
        a SerializableBinaryOperator which returns the greater of its operands, according to the supplied Comparator
        Throws:
        java.lang.NullPointerException - if the argument is null