Hi Lydia,
you can use a variable outside the scope of the normal filter (the one that
you define inline, if I understand correctly), like this:
*final* int *filterParameter* = 0;
dataset.filter(new FilterFunction () {
@Override
public boolean filter(Integer value) {
return value
Hi all,
I have a DataSet and I want to apply a filter
to only get back all entries with e.g. first Integer in tuple == 0.
With a normal filter I do not have the possibility to pass an an additional
argument but I have to set that parameter inside the filter function.
Is there a possibility to