Interface JsonNode
-
- All Known Subinterfaces:
JsonArray,JsonNull,JsonObject,JsonPrimitive
public interface JsonNodeInterfaces that represents a JSON node.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default booleanisArray()default booleanisNull()default booleanisObject()default booleanisValue()
-
-
-
Method Detail
-
isObject
default boolean isObject()
- Returns:
- True if this
JsonNodeis an instance ofJsonObject.
-
isValue
default boolean isValue()
- Returns:
- True if this
JsonNodeis an instance ofJsonPrimitive.
-
-