Determine if the value is null. @param index The index must be between 0 and length() - 1. @return true if the value at the index is null, or if there is no value.
(int index)
| 337 | * @return true if the value at the index is null, or if there is no value. |
| 338 | */ |
| 339 | public boolean isNull(int index) { |
| 340 | return JSONObject.NULL.equals(opt(index)); |
| 341 | } |
| 342 | |
| 343 | |
| 344 | /** |