Interface JsonProducer

    • Method Detail

      • writeJson

        StringBuilder writeJson​(StringBuilder target)
        Append the JSON representation of this object's data to a StringBuilder.
        Parameters:
        target - the StringBuilder to append to
        Returns:
        the target passed in is also returned (to allow chaining)
      • toJson

        default String toJson()
        Convenience method equivalent to writeJson(new StringBuilder()).toString()
        Returns:
        a String containing JSON representation of this object's data