Append either the value true or the value false . @param b A boolean. @return this
(boolean b)
| 280 | * @return this |
| 281 | */ |
| 282 | public JSONWriter value(boolean b) throws JSONException { |
| 283 | return this.append(b ? "true" : "false"); |
| 284 | } |
| 285 | |
| 286 | /** |
| 287 | * Append a double value. |
no test coverage detected