Package org.apache.commons.io.function
Interface IOBinaryOperator<T>
-
- Type Parameters:
T- the type of the operands and result of the operator.
- All Superinterfaces:
IOBiFunction<T,T,T>
- 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 IOBinaryOperator<T> extends IOBiFunction<T,T,T>
LikeBinaryOperatorbut throwsIOException.- Since:
- 2.12.0
- See Also:
IOBiFunction,BinaryOperator
-
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description default java.util.function.BinaryOperator<T>asBinaryOperator()Creates aBinaryOperatorfor this instance that throwsUncheckedIOExceptioninstead ofIOException.static <T> IOBinaryOperator<T>maxBy(IOComparator<? super T> comparator)Creates aIOBinaryOperatorwhich returns the greater of two elements according to the specifiedComparator.static <T> IOBinaryOperator<T>minBy(IOComparator<? super T> comparator)Creates aIOBinaryOperatorwhich returns the lesser of two elements according to the specifiedComparator.-
Methods inherited from interface org.apache.commons.io.function.IOBiFunction
andThen, apply, asBiFunction
-
-
-
-
Method Detail
-
maxBy
static <T> IOBinaryOperator<T> maxBy(IOComparator<? super T> comparator)
Creates aIOBinaryOperatorwhich 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
BinaryOperatorwhich returns the greater of its operands, according to the suppliedComparator - Throws:
java.lang.NullPointerException- if the argument is null
-
minBy
static <T> IOBinaryOperator<T> minBy(IOComparator<? super T> comparator)
Creates aIOBinaryOperatorwhich 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
BinaryOperatorwhich returns the lesser of its operands, according to the suppliedComparator - Throws:
java.lang.NullPointerException- if the argument is null
-
asBinaryOperator
default java.util.function.BinaryOperator<T> asBinaryOperator()
Creates aBinaryOperatorfor this instance that throwsUncheckedIOExceptioninstead ofIOException.- Returns:
- an unchecked BiFunction.
-
-