Begins encoding a new object. Each call to this method must be paired with a call to #endObject. @return this writer.
()
| 243 | * @return this writer. |
| 244 | */ |
| 245 | public JsonWriter beginObject() throws IOException { |
| 246 | return open(JsonScope.EMPTY_OBJECT, "{"); |
| 247 | } |
| 248 | |
| 249 | /** |
| 250 | * Ends encoding the current object. |