Ends encoding the current array. @return this writer.
()
| 233 | * @return this writer. |
| 234 | */ |
| 235 | public JsonWriter endArray() throws IOException { |
| 236 | return close(JsonScope.EMPTY_ARRAY, JsonScope.NONEMPTY_ARRAY, "]"); |
| 237 | } |
| 238 | |
| 239 | /** |
| 240 | * Begins encoding a new object. Each call to this method must be paired |