provides check for verifying if this element represents a null value or not. @return true if this element is of type JsonNull, false otherwise. @since 1.2
()
| 64 | * @since 1.2 |
| 65 | */ |
| 66 | public boolean isJsonNull() { |
| 67 | return this instanceof JsonNull; |
| 68 | } |
| 69 | |
| 70 | /** |
| 71 | * convenience method to get this element as a {@link JsonObject}. If the element is of some |
no outgoing calls