Class KorypheBinaryOperator<T>
- java.lang.Object
-
- uk.gov.gchq.koryphe.binaryoperator.KorypheBinaryOperator<T>
-
- Type Parameters:
T
- Input/Output type
- All Implemented Interfaces:
BiFunction<T,T,T>
,BinaryOperator<T>
- Direct Known Subclasses:
And
,BinaryOperatorMap
,CollectionConcat
,CollectionIntersect
,First
,IterableMerge
,Last
,Max
,Min
,NumericAggregateFunction
,Or
,StringConcat
,StringDeduplicateConcat
public abstract class KorypheBinaryOperator<T> extends Object implements BinaryOperator<T>
Abstract superclass provided for convenience.
-
-
Constructor Summary
Constructors Constructor Description KorypheBinaryOperator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description T
apply(T state, T input)
Apply the operator after completing null checks.boolean
equals(Object obj)
int
hashCode()
-
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.function.BiFunction
andThen
-
-