| Constructor and Description |
|---|
Builder()
Create a
Builder to configure a new Filter. |
Builder(Filter<R> filter)
Create a
Builder to configure a Filter. |
| Modifier and Type | Method and Description |
|---|---|
Filter<R> |
build()
Build the
Filter configured by this Builder. |
Filter.Builder<R> |
execute(FilterFunction function)
Set the
FilterFunction to be executed by the current
ConsumerFunctionContext. |
Filter.Builder<R> |
select(R... selection)
Set the selection references for the current
ConsumerFunctionContext. |
public Builder()
Builder to configure a new Filter.public Filter.Builder<R> select(R... selection)
ConsumerFunctionContext. If
the current context already has a selection set, a new context is created and made current. Returns this
Builder for further configuration.selection - Selection references.Builder.public Filter.Builder<R> execute(FilterFunction function)
FilterFunction to be executed by the current
ConsumerFunctionContext. If the current context already has a function set,
a new context is created and made current. Returns this Builder for further configuration.function - FilterFunction to be executed.Builder.Copyright © 2017. All rights reserved.