| Constructor and Description |
|---|
BiFunctionExecutionBuilder(BiFunction<A,B,RESULT> lambda,
List<Object> params,
ExecutionContext context)
Default constructor.
|
| Modifier and Type | Method and Description |
|---|---|
<A,B,RESULT> |
StaticExecutionBuilderFactory.execute(BiFunction<A,B,RESULT> lambda)
Starts the execution build for a
BiFunction. |
<A,B,UNPARSED_RESULT,RESULT> |
StaticExecutionBuilderFactory.execute(BiFunction<A,B,UNPARSED_RESULT> lambda,
Parser<UNPARSED_RESULT,RESULT> resultParser)
Starts the execution build for a
BiFunction parsing the result with a Parser. |
<A,RESULT> FunctionExecutionBuilder<A,RESULT> |
InstanceExecutionBuilderFactory.execute(BiFunction<INSTANCE,A,RESULT> lambda)
Starts the execution build for a
BiFunction. |
<A,UNPARSED_RESULT,RESULT> |
InstanceExecutionBuilderFactory.execute(BiFunction<INSTANCE,A,UNPARSED_RESULT> lambda,
Parser<UNPARSED_RESULT,RESULT> resultParser)
Starts the execution build for a
BiFunction parsing the result with a Parser. |
| Modifier and Type | Method and Description |
|---|---|
default BiFunction<A,B,Void> |
BiConsumer.toFunction() |
| Modifier and Type | Method and Description |
|---|---|
default <AFTER_RESULT> |
BiFunction.andThen(Function<? super RESULT,? extends AFTER_RESULT> after)
Returns a composed bifunction that first applies this bifunction to its input, and then applies the
after
function to the result. |
default BiFunction<B,C,RESULT> |
TriFunction.downgrade(A a) |
Copyright © 2019. All rights reserved.