Append a boolean value. This increases the array's length by one. @param value A boolean value. @return this.
(boolean value)
| 567 | * @return this. |
| 568 | */ |
| 569 | public JSONArray put(boolean value) { |
| 570 | put(value ? Boolean.TRUE : Boolean.FALSE); |
| 571 | return this; |
| 572 | } |
| 573 | |
| 574 | |
| 575 | /** |
no test coverage detected