Put or replace a String value. If the index is greater than the length of the JSONArray, then null elements will be added as necessary to pad it out. @webref jsonarray:method @brief Put a String value in the JSONArray @param index an index value @param value the value to assign @return this. @thr
(int index, String value)
| 862 | * @see JSONArray#setBoolean(int, boolean) |
| 863 | */ |
| 864 | public JSONArray setString(int index, String value) { |
| 865 | this.set(index, value); |
| 866 | return this; |
| 867 | } |
| 868 | |
| 869 | |
| 870 | /** |