L - the left argument type.R - the right argument type.T - the returned value type.public class TransformedBinaryFunction<L,R,T> extends Object implements BinaryFunction<L,R,T>
| Constructor and Description |
|---|
TransformedBinaryFunction(BinaryFunction<? super L,? super R,? extends X> preceding,
Function<? super X,? extends T> following)
Create a new TransformedBinaryFunction.
|
public TransformedBinaryFunction(BinaryFunction<? super L,? super R,? extends X> preceding, Function<? super X,? extends T> following)
X - the following function left argument.preceding - BinaryFunctionfollowing - Functionpublic final T evaluate(L left, R right)
evaluate in interface BinaryFunction<L,R,T>left - the L element of the ordered pair of argumentsright - the R element of the ordered pair of argumentsCopyright © 2003–2014 The Apache Software Foundation. All rights reserved.