Sto imparando java e jsr-353. La mia domanda è abbastanza avanzata. Avendo il metodo qui sotto:
public JsonObject createJsonObject() {
return Json.createObjectBuilder()
.add("address", this.getAddress())
.add("city", this.getCity())
.add("state", this.getState())
.add("postalcode", this.getPostalcode())
.add("country", this.getCountry())
.add("contactNumber", this.getContactNumber())
.add("secondContactNumber",this.getSecondContactNumber())
.build();
}
Come gestisci se uno qualsiasi degli attributi è NULL?
grazie