Determine if the value associated with the key is null or if there is no value. @webref @param key A key string. @return true if there is no value associated with the key or if the value is the JSONObject.NULL object.
(String key)
| 922 | * the value is the JSONObject.NULL object. |
| 923 | */ |
| 924 | public boolean isNull(String key) { |
| 925 | return JSONObject.NULL.equals(this.opt(key)); |
| 926 | } |
| 927 | |
| 928 | |
| 929 | /** |