Append either the value true or the value false . @param b A boolean. @return this @throws JSONException
(boolean b)
| 286 | * @throws JSONException |
| 287 | */ |
| 288 | public JSONWriter value(boolean b) throws JSONException { |
| 289 | return this.append(b ? "true" : "false"); |
| 290 | } |
| 291 | |
| 292 | /** |
| 293 | * Append a double value. |
nothing calls this directly
no test coverage detected