Interface JsonNodeReader

  • All Known Implementing Classes:
    DefaultJsonNodeReader

    public interface JsonNodeReader
    Reader for reading content to JsonNode.
    • Method Detail

      • readTree

        com.fasterxml.jackson.databind.JsonNode readTree​(String content,
                                                         InputFormat inputFormat)
                                                  throws IOException
        Deserialize content as a tree.
        Parameters:
        content - the content
        inputFormat - the input format
        Returns:
        the node
        Throws:
        IOException - IOException
      • readTree

        com.fasterxml.jackson.databind.JsonNode readTree​(InputStream content,
                                                         InputFormat inputFormat)
                                                  throws IOException
        Deserialize content as a tree.
        Parameters:
        content - input stream
        inputFormat - input format
        Returns:
        the node
        Throws:
        IOException - IOException