Class DefaultPrettyPrinter

    • Field Detail

      • DEFAULT_ROOT_VALUE_SEPARATOR

        public static final SerializedString DEFAULT_ROOT_VALUE_SEPARATOR
        Constant that specifies default "root-level" separator to use between root values: a single space character.
        Since:
        2.1
    • Constructor Detail

      • DefaultPrettyPrinter

        public DefaultPrettyPrinter()
      • DefaultPrettyPrinter

        public DefaultPrettyPrinter​(java.lang.String rootSeparator)
        Constructor that specifies separator String to use between root values; if null, no separator is printed.

        Note: simply constructs a SerializedString out of parameter, calls DefaultPrettyPrinter(SerializableString)

        Parameters:
        rootSeparator - String to use as root value separator
      • DefaultPrettyPrinter

        public DefaultPrettyPrinter​(SerializableString rootSeparator)
        Constructor that specifies separator String to use between root values; if null, no separator is printed.
        Parameters:
        rootSeparator - String to use as root value separator
    • Method Detail

      • withRootSeparator

        public DefaultPrettyPrinter withRootSeparator​(java.lang.String rootSeparator)
        Parameters:
        rootSeparator - Root-level value separator to use
        Returns:
        This pretty-printer instance (for call chaining)
        Since:
        2.6
      • withSpacesInObjectEntries

        public DefaultPrettyPrinter withSpacesInObjectEntries()
        "Mutant factory" method that will return a pretty printer instance that does use spaces inside object entries; if 'this' instance already does this, it is returned; if not, a new instance will be constructed and returned.
        Returns:
        This pretty-printer instance (for call chaining)
        Since:
        2.3
      • withoutSpacesInObjectEntries

        public DefaultPrettyPrinter withoutSpacesInObjectEntries()
        "Mutant factory" method that will return a pretty printer instance that does not use spaces inside object entries; if 'this' instance already does this, it is returned; if not, a new instance will be constructed and returned.
        Returns:
        This pretty-printer instance (for call chaining)
        Since:
        2.3
      • withSeparators

        public DefaultPrettyPrinter withSeparators​(Separators separators)
        Method for configuring separators for this pretty-printer to use
        Parameters:
        separators - Separator definitions to use
        Returns:
        This pretty-printer instance (for call chaining)
        Since:
        2.9
      • writeRootValueSeparator

        public void writeRootValueSeparator​(JsonGenerator g)
                                     throws java.io.IOException
        Description copied from interface: PrettyPrinter
        Method called after a root-level value has been completely output, and before another value is to be output.

        Default handling (without pretty-printing) will output a space, to allow values to be parsed correctly. Pretty-printer is to output some other suitable and nice-looking separator (tab(s), space(s), linefeed(s) or any combination thereof).

        Specified by:
        writeRootValueSeparator in interface PrettyPrinter
        Parameters:
        g - Generator used for output
        Throws:
        java.io.IOException - if there is either an underlying I/O problem or encoding issue at format layer
      • writeStartObject

        public void writeStartObject​(JsonGenerator g)
                              throws java.io.IOException
        Description copied from interface: PrettyPrinter
        Method called when an Object value is to be output, before any fields are output.

        Default handling (without pretty-printing) will output the opening curly bracket. Pretty-printer is to output a curly bracket as well, but can surround that with other (white-space) decoration.

        Specified by:
        writeStartObject in interface PrettyPrinter
        Parameters:
        g - Generator used for output
        Throws:
        java.io.IOException - if there is either an underlying I/O problem or encoding issue at format layer
      • beforeObjectEntries

        public void beforeObjectEntries​(JsonGenerator g)
                                 throws java.io.IOException
        Description copied from interface: PrettyPrinter
        Method called after object start marker has been output, and right before the field name of the first entry is to be output. It is not called for objects without entries.

        Default handling does not output anything, but pretty-printer is free to add any white space decoration.

        Specified by:
        beforeObjectEntries in interface PrettyPrinter
        Parameters:
        g - Generator used for output
        Throws:
        java.io.IOException - if there is either an underlying I/O problem or encoding issue at format layer
      • writeObjectFieldValueSeparator

        public void writeObjectFieldValueSeparator​(JsonGenerator g)
                                            throws java.io.IOException
        Method called after an object field has been output, but before the value is output.

        Default handling (without pretty-printing) will output a single colon to separate the two. Pretty-printer is to output a colon as well, but can surround that with other (white-space) decoration.

        Specified by:
        writeObjectFieldValueSeparator in interface PrettyPrinter
        Parameters:
        g - Generator used for output
        Throws:
        java.io.IOException - if there is either an underlying I/O problem or encoding issue at format layer
      • writeObjectEntrySeparator

        public void writeObjectEntrySeparator​(JsonGenerator g)
                                       throws java.io.IOException
        Method called after an object entry (field:value) has been completely output, and before another value is to be output.

        Default handling (without pretty-printing) will output a single comma to separate the two. Pretty-printer is to output a comma as well, but can surround that with other (white-space) decoration.

        Specified by:
        writeObjectEntrySeparator in interface PrettyPrinter
        Parameters:
        g - Generator used for output
        Throws:
        java.io.IOException - if there is either an underlying I/O problem or encoding issue at format layer
      • writeEndObject

        public void writeEndObject​(JsonGenerator g,
                                   int nrOfEntries)
                            throws java.io.IOException
        Description copied from interface: PrettyPrinter
        Method called after an Object value has been completely output (minus closing curly bracket).

        Default handling (without pretty-printing) will output the closing curly bracket. Pretty-printer is to output a curly bracket as well, but can surround that with other (white-space) decoration.

        Specified by:
        writeEndObject in interface PrettyPrinter
        Parameters:
        g - Generator used for output
        nrOfEntries - Number of direct members of the Object that have been output
        Throws:
        java.io.IOException - if there is either an underlying I/O problem or encoding issue at format layer
      • writeStartArray

        public void writeStartArray​(JsonGenerator g)
                             throws java.io.IOException
        Description copied from interface: PrettyPrinter
        Method called when an Array value is to be output, before any member/child values are output.

        Default handling (without pretty-printing) will output the opening bracket. Pretty-printer is to output a bracket as well, but can surround that with other (white-space) decoration.

        Specified by:
        writeStartArray in interface PrettyPrinter
        Parameters:
        g - Generator used for output
        Throws:
        java.io.IOException - if there is either an underlying I/O problem or encoding issue at format layer
      • beforeArrayValues

        public void beforeArrayValues​(JsonGenerator g)
                               throws java.io.IOException
        Description copied from interface: PrettyPrinter
        Method called after array start marker has been output, and right before the first value is to be output. It is not called for arrays with no values.

        Default handling does not output anything, but pretty-printer is free to add any white space decoration.

        Specified by:
        beforeArrayValues in interface PrettyPrinter
        Parameters:
        g - Generator used for output
        Throws:
        java.io.IOException - if there is either an underlying I/O problem or encoding issue at format layer
      • writeArrayValueSeparator

        public void writeArrayValueSeparator​(JsonGenerator g)
                                      throws java.io.IOException
        Method called after an array value has been completely output, and before another value is to be output.

        Default handling (without pretty-printing) will output a single comma to separate the two. Pretty-printer is to output a comma as well, but can surround that with other (white-space) decoration.

        Specified by:
        writeArrayValueSeparator in interface PrettyPrinter
        Parameters:
        g - Generator used for output
        Throws:
        java.io.IOException - if there is either an underlying I/O problem or encoding issue at format layer
      • writeEndArray

        public void writeEndArray​(JsonGenerator g,
                                  int nrOfValues)
                           throws java.io.IOException
        Description copied from interface: PrettyPrinter
        Method called after an Array value has been completely output (minus closing bracket).

        Default handling (without pretty-printing) will output the closing bracket. Pretty-printer is to output a bracket as well, but can surround that with other (white-space) decoration.

        Specified by:
        writeEndArray in interface PrettyPrinter
        Parameters:
        g - Generator used for output
        nrOfValues - Number of direct members of the array that have been output
        Throws:
        java.io.IOException - if there is either an underlying I/O problem or encoding issue at format layer