Interface JsonProducer

    • Method Detail

      • writeJson

        StringBuilder writeJson​(StringBuilder target)
        Append the JSON representation of this object's data to a StringBuilder. Note that when passing compact=false the generated string will be human-readable and containing embedded newlines; also the exact indentation etc may change, so use compact=true for a canonical format.
        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.