Posts by Tiago Giacometi • 9 points
1 post
-
0
votes3
answers294
viewsA: Transform Set<Integer> into Set<String>
Set<String> checadosStrings = new HashSet<String>(); for (Integer checado : checados) { checadosStrings.add(checado.toString()); }