Returns a mutable List view of this JsonArray. Changes to the List are visible in this JsonArray and the other way around. The List does not permit null elements. Unlike JsonArray's null handling, a NullPointerException is t
()
| 413 | * @since 2.10 |
| 414 | */ |
| 415 | public List<JsonElement> asList() { |
| 416 | return new NonNullElementWrapperList<>(elements); |
| 417 | } |
| 418 | |
| 419 | /** |
| 420 | * Returns whether the other object is equal to this. This method only considers the other object |
no outgoing calls