Interface ThrowableBinaryOperator<T>
- Type Parameters:
T
- the type of the operands and result of the operator
- All Superinterfaces:
BiFunction<T,
,T, T> BinaryOperator<T>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Represents an operation upon two operands of the same type, producing a result of the same type
as the operands. This is a specialization of
BiFunction
for the case where the operands
and the result are all of the same type.
Permits checked exceptions unlike BinaryOperator
This is a functional interface whose functional method is
apply(Object, Object)
.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiondefault T
Applies this function to the given arguments.applyUnsafe
(T t, T t2) Applies this function to the given argument.static <T> ThrowableBinaryOperator<T>
maxBy
(Comparator<? super T> comparator) Returns aThrowableBinaryOperator
which returns the greater of two elements according to the specifiedComparator
.static <T> ThrowableBinaryOperator<T>
minBy
(Comparator<? super T> comparator) Returns aThrowableBinaryOperator
which returns the lesser of two elements according to the specifiedComparator
.Methods inherited from interface java.util.function.BiFunction
andThen
-
Method Details
-
applyUnsafe
Applies this function to the given argument.- Parameters:
t
- the function argument- Returns:
- the function result
- Throws:
Throwable
- occurred during processing
-
apply
Applies this function to the given arguments.- Specified by:
apply
in interfaceBiFunction<T,
T, T> - Parameters:
t
- the function argument- Returns:
- the function result
-
minBy
Returns aThrowableBinaryOperator
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
-
maxBy
Returns aThrowableBinaryOperator
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
-