I get this error when trying to compile:
The method filter(Iterable<T>, Predicate<? super T>)
in the type Iterables is not applicable for the arguments (Iterator<PeopleSoftBalance>, ColumnLikePredicate<PeopleSoftBalance>
)
Here is the ColumnLikePredicate class sig:
public class ColumnLikePredicate<T extends RowModel> implements Predicate<T>
What am I doing wrong?