Append an String value. This increases the array's length by one. @webref jsonarray:method @brief Appends a value, increasing the array's length by one @param value a String value @return this. @see JSONArray#size() @see JSONArray#remove(int)
(String value)
| 705 | * @see JSONArray#remove(int) |
| 706 | */ |
| 707 | public JSONArray append(String value) { |
| 708 | this.append((Object)value); |
| 709 | return this; |
| 710 | } |
| 711 | |
| 712 | |
| 713 | /** |
no test coverage detected