Posts by Igor Rodrigues • 41 points
2 posts
-
1
votes4
answers140
viewsA: "Enum" should be used to indicate business rule options?
Imagine that the Enum fits very well to sizes of coffee cups from a coffee shop, in it there are only cups with sizes P, M and G. In this case you do not want a user register a cup that he will not…
-
3
votes4
answers13756
viewsA: Sort List in java
So I find it even easier: - Using java 8 Reference Method Collections.sort(listaPessoas, Comparator.comparing(Pessoa::getNome)); Hugs!!