Ends encoding the current object. @return this writer.
()
| 252 | * @return this writer. |
| 253 | */ |
| 254 | public JsonWriter endObject() throws IOException { |
| 255 | return close(JsonScope.EMPTY_OBJECT, JsonScope.NONEMPTY_OBJECT, "}"); |
| 256 | } |
| 257 | |
| 258 | /** |
| 259 | * Enters a new scope by appending any necessary whitespace and the given |