Removes the property from this JsonObject. @param property name of the member that should be removed. @return the JsonElement object that is being removed. @since 1.3
(String property)
| 68 | * @since 1.3 |
| 69 | */ |
| 70 | public JsonElement remove(String property) { |
| 71 | return members.remove(property); |
| 72 | } |
| 73 | |
| 74 | /** |
| 75 | * Convenience method to add a primitive member. The specified value is converted to a |
no outgoing calls