Posts by Rodrigo Wippel • 53 points
3 posts
-
3
votes1
answer100
viewsQ: Class does not compile when using the new java 8 Feature 'Optional'
Good afternoon I’m using play 2.5.4 with java 8 V01.08.91 And when using some java 8 Features as the 'Optional' class with ifPresent, isPresent or get methods the following error is displayed when…
-
1
votes0
answers40
viewsQ: Is it possible to fill a tree list in reverse using stream?
The point is this My class public class Node{ private String name; private Node parent; private List<Node> children; public Node() { } public Node(String name) { this.name = name; } public…
-
1
votes1
answer164
viewsQ: Doubt with JSON in Jquery Autocomplete
I have the following return JSON {"cliente":[ {"id":"1","nome":"Fulano"}, {"id":"2","nome":"Ciclado"} ]} And I need popular man autocomplete, $('#nome').autocomplete({ source: function(request,…