Determine if the value is null. @webref @param 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)
| 1052 | * @return true if the value at the index is null, or if there is no value. |
| 1053 | */ |
| 1054 | public boolean isNull(int index) { |
| 1055 | return JSONObject.NULL.equals(this.opt(index)); |
| 1056 | } |
| 1057 | |
| 1058 | |
| 1059 | /** |