class JsonArray : JsonContainer, Iterable<JsonValue>
Since
1.0
JsonValue representation for 'array'.
JsonArray(vararg items: Any?)
json array filled with items. Each item must be of a valid type (See 'Valid Types'). JsonArray()
empty json array. |
val size: Int |
fun add(value: Any?): Unit |
|
fun clone(): JsonArray |
|
fun get(index: Int): JsonValue |
|
fun insert(index: Int, value: Any?): Unit |
|
fun isEmpty(): Boolean |
|
fun iterator(): MutableIterator<JsonValue> |
|
fun remove(index: Int): Unit |
|
fun set(index: Int, value: Any?): Unit |
open operator fun get(key: String): JsonValue |
|
fun isNotEmpty(): Boolean |
|
open operator fun set(key: String, value: Any?): Unit |