How can I use OR when I want to filter Speedment streams? How do I write a stream with users that are either from NY, NJ or PA?
users.stream()
.filter(User.STATE.equals("NY"))
.collect(Collectors.toList())
This produces a list of users from NY only...