fun JSONArray.forEach(action: (JSONObject) -> Unit): Unitfun JSONArray.forEach(action: F1<JSONObject>): Unit
invoke action every JSONObject  | 
|
fun JSONArray.getJSONBoolean(index: Int, def: Boolean = false): Boolean
get Boolean from JSONArray  | 
|
fun JSONArray.getJSONDouble(index: Int, def: Double = 0.toDouble()): Double
get Double from JSONArray  | 
|
fun JSONArray.getJSONInt(index: Int, def: Int = 0): Int
get Int from JSONArray  | 
|
fun JSONArray.getJSONLong(index: Int, def: Long = 0.toLong()): Long
get Long from JSONArray  | 
|
fun JSONArray.getJSONString(index: Int, def: String = ""): String
get String from JSONArray  | 
|
fun JSONArray.toList(): List<JSONObject>
convert JSONArray to List  |