Appends value to the end of this array. @return this array.
(boolean value)
| 136 | * @return this array. |
| 137 | */ |
| 138 | public JSONArray put(boolean value) { |
| 139 | values.add(value); |
| 140 | return this; |
| 141 | } |
| 142 | |
| 143 | /** |
| 144 | * Appends {@code value} to the end of this array. |
no test coverage detected