Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. private void loadList(List<Pessoas> listPessoas){
  2. Map<String, List<Pessoas>> listMap = listPessoas.stream().collect(Collectors.groupingBy(Pessoa::getDate_born)); //LISTA AGRUPADA
  3. }
  4.  
  5. private void loadList(List<Pessoas> listPessoas){
  6. List<Pessoas> listPessoasFiltered = ??
  7. Map<String, List<Pessoas>> listMap = listPessoasFiltered.stream().collect(Collectors.groupingBy(Pessoa::getDate_born));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement