Interface JSONContext<T extends Message.Mutable>

    • Method Detail

      • parse

        T[] parse​(java.io.Reader reader)
           throws java.text.ParseException

        Parses an array of messages from the given reader.

        Parameters:
        reader - the reader to parse from
        Returns:
        an array of messages
        Throws:
        java.text.ParseException - in case of parsing errors
      • parse

        T[] parse​(java.lang.String json)
           throws java.text.ParseException

        Parses an array of messages from the given string.

        Parameters:
        json - the JSON string to parse from
        Returns:
        an array of messages
        Throws:
        java.text.ParseException - in case of parsing errors
      • generate

        java.lang.String generate​(T message)

        Converts a single message to a JSON string.

        Parameters:
        message - the message to stringify
        Returns:
        the JSON string for the message
      • generate

        java.lang.String generate​(java.util.List<T> messages)

        Converts a list of messages to a JSON string.

        Parameters:
        messages - the list of messages to stringify
        Returns:
        the JSON string for the messages
      • getParser

        JSONContext.Parser getParser()
        Returns:
        a synchronous JSON parser to parse any JSON string
      • getGenerator

        JSONContext.Generator getGenerator()
        Returns:
        a JSON generator to stringify any object to a JSON string