Removes the element from a JSONArray in the specified index position. Returns either the value associated with the given index, or null , if there is no value. @webref jsonarray:method @webBrief Removes the element from a JSONArray in the specified index position @param index th
(int index)
| 1157 | * @see JSONArray#append(String) |
| 1158 | */ |
| 1159 | public Object remove(int index) { |
| 1160 | Object o = this.opt(index); |
| 1161 | this.myArrayList.remove(index); |
| 1162 | return o; |
| 1163 | } |
| 1164 | |
| 1165 | |
| 1166 | // /** |