Appends a new value to the JSONArray , increasing the array's length by one. New values may be of the following types: int , float , String , boolean , JSONObject , or JSONArray . @webref jsonarray:method @webBrief Appends a value, increasing the array's le
(String value)
| 779 | * @see JSONArray#remove(int) |
| 780 | */ |
| 781 | public JSONArray append(String value) { |
| 782 | this.append((Object)value); |
| 783 | return this; |
| 784 | } |
| 785 | |
| 786 | |
| 787 | /** |
no test coverage detected