Skip to content

Instantly share code, notes, and snippets.

@peas
Created March 17, 2014 02:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peas/9592988 to your computer and use it in GitHub Desktop.
Save peas/9592988 to your computer and use it in GitHub Desktop.
List<Usuario> filtradosOrdenados = usuarios.stream()
.filter(u -> u.getPontos() > 100)
.sorted(Comparator.comparing(Usuario::getNome))
.collect(Collectors.toList());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment