Begins encoding a new array. Each call to this method must be paired with a call to #endArray. @return this writer.
()
| 224 | * @return this writer. |
| 225 | */ |
| 226 | public JsonWriter beginArray() throws IOException { |
| 227 | return open(JsonScope.EMPTY_ARRAY, "["); |
| 228 | } |
| 229 | |
| 230 | /** |
| 231 | * Ends encoding the current array. |