Christoph Raab

All about DevOps...

CheatSheet
cheatsheet/java/streams

List of Obj where field is true

List<SomeObj> validObjs = someListOfObj
  .stream()
  .collect(Collectors.groupingBy(SomeObj::isValid, Collectors.toList()));
  .get(true);