Interface JsonNode

All Known Subinterfaces:
JsonArray, JsonNull, JsonObject, JsonPrimitive

public interface JsonNode
Interfaces that represents a JSON node.
  • Method Summary

    Modifier and Type
    Method
    Description
    default boolean
     
    default boolean
     
    default boolean
     
    default boolean
     
  • Method Details

    • isArray

      default boolean isArray()
      Returns:
      True if this JsonNode is an instance of JsonArray.
    • isNull

      default boolean isNull()
      Returns:
      True if this JsonNode is an instance of JsonNull.
    • isObject

      default boolean isObject()
      Returns:
      True if this JsonNode is an instance of JsonObject.
    • isValue

      default boolean isValue()
      Returns:
      True if this JsonNode is an instance of JsonPrimitive.