Determine if the value associated with the key is null or if there is no value. @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)
| 682 | * the value is the JSONObject.NULL object. |
| 683 | */ |
| 684 | public boolean isNull(String key) { |
| 685 | return JSONObject.NULL.equals(opt(key)); |
| 686 | } |
| 687 | |
| 688 | |
| 689 | /** |