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.
Like
BinaryOperator
but throws IOException
.- Since:
- 2.12.0
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiondefault BinaryOperator<T>
static <T> IOBinaryOperator<T>
maxBy
(IOComparator<? super T> comparator) Creates aIOBinaryOperator
which returns the greater of two elements according to the specifiedComparator
.static <T> IOBinaryOperator<T>
minBy
(IOComparator<? super T> comparator) Creates aIOBinaryOperator
which returns the lesser of two elements according to the specifiedComparator
.Methods inherited from interface org.apache.commons.io.function.IOBiFunction
andThen, apply, asBiFunction
-
Method Details
-
maxBy
Creates aIOBinaryOperator
which returns the greater of two elements according to the specifiedComparator
.- Type Parameters:
T
- the type of the input arguments of the comparator- Parameters:
comparator
- aComparator
for comparing the two values- Returns:
- a
BinaryOperator
which returns the greater of its operands, according to the suppliedComparator
- Throws:
NullPointerException
- if the argument is null
-
minBy
Creates aIOBinaryOperator
which returns the lesser of two elements according to the specifiedComparator
.- Type Parameters:
T
- the type of the input arguments of the comparator- Parameters:
comparator
- aComparator
for comparing the two values- Returns:
- a
BinaryOperator
which returns the lesser of its operands, according to the suppliedComparator
- Throws:
NullPointerException
- if the argument is null
-
asBinaryOperator
- Returns:
- an unchecked BiFunction.
-