Re: filter dataset

2016-02-29 Thread Stefano Baghino
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

filter dataset

2016-02-29 Thread Lydia Ickler
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