Class DefaultPrettyPrinter
- All Implemented Interfaces:
PrettyPrinter
- Direct Known Subclasses:
DefaultPrettyPrinter
PrettyPrinter implementation that uses 2-space
indentation with platform-default linefeeds.
Usually this class is not instantiated directly, but instead
method JsonGenerator.useDefaultPrettyPrinter() is
used, which will use an instance of this class for operation.-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classThis is a very simple indenter that only every adds a single space for indentation.static classDefault linefeed-based indenter uses system-specific linefeeds and 2 spaces for indentation per level.static classDummy implementation that adds no indentation whatsoever -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected IndenterBy default, let's use only spaces to separate array values.protected intNumber of open levels of nesting.protected IndenterBy default, let's use linefeed-adding indenter for separate object entries.protected booleanBy default we will add spaces around colons used to separate object fields and values. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidMethod called after array start marker has been output, and right before the first value is to be output.voidMethod called after object start marker has been output, and right before the field name of the first entry is to be output.voidvoidvoidspacesInObjectEntries(boolean b) voidMethod called after an array value has been completely output, and before another value is to be output.voidwriteEndArray(JsonGenerator jg, int nrOfValues) Method called after an Array value has been completely output (minus closing bracket).voidwriteEndObject(JsonGenerator jg, int nrOfEntries) Method called after an Object value has been completely output (minus closing curly bracket).voidMethod called after an object entry (field:value) has been completely output, and before another value is to be output.voidMethod called after an object field has been output, but before the value is output.voidMethod called after a root-level value has been completely output, and before another value is to be output.voidMethod called when an Array value is to be output, before any member/child values are output.voidMethod called when an Object value is to be output, before any fields are output.
-
Field Details
-
_arrayIndenter
By default, let's use only spaces to separate array values. -
_objectIndenter
By default, let's use linefeed-adding indenter for separate object entries. We'll further configure indenter to use system-specific linefeeds, and 2 spaces per level (as opposed to, say, single tabs) -
_spacesInObjectEntries
protected boolean _spacesInObjectEntriesBy default we will add spaces around colons used to separate object fields and values. If disabled, will not use spaces around colon. -
_nesting
protected int _nestingNumber of open levels of nesting. Used to determine amount of indentation to use.
-
-
Constructor Details
-
DefaultPrettyPrinter
public DefaultPrettyPrinter()
-
-
Method Details
-
indentArraysWith
-
indentObjectsWith
-
spacesInObjectEntries
public void spacesInObjectEntries(boolean b) -
writeRootValueSeparator
Description copied from interface:PrettyPrinterMethod 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:
writeRootValueSeparatorin interfacePrettyPrinter- Throws:
IOExceptionJsonGenerationException
-
writeStartObject
Description copied from interface:PrettyPrinterMethod 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:
writeStartObjectin interfacePrettyPrinter- Throws:
IOExceptionJsonGenerationException
-
beforeObjectEntries
Description copied from interface:PrettyPrinterMethod 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:
beforeObjectEntriesin interfacePrettyPrinter- Throws:
IOExceptionJsonGenerationException
-
writeObjectFieldValueSeparator
public void writeObjectFieldValueSeparator(JsonGenerator jg) throws IOException, JsonGenerationException 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:
writeObjectFieldValueSeparatorin interfacePrettyPrinter- Throws:
IOExceptionJsonGenerationException
-
writeObjectEntrySeparator
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:
writeObjectEntrySeparatorin interfacePrettyPrinter- Throws:
IOExceptionJsonGenerationException
-
writeEndObject
public void writeEndObject(JsonGenerator jg, int nrOfEntries) throws IOException, JsonGenerationException Description copied from interface:PrettyPrinterMethod 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:
writeEndObjectin interfacePrettyPrinter- Parameters:
nrOfEntries- Number of direct members of the array that have been output- Throws:
IOExceptionJsonGenerationException
-
writeStartArray
Description copied from interface:PrettyPrinterMethod 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:
writeStartArrayin interfacePrettyPrinter- Throws:
IOExceptionJsonGenerationException
-
beforeArrayValues
Description copied from interface:PrettyPrinterMethod 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:
beforeArrayValuesin interfacePrettyPrinter- Throws:
IOExceptionJsonGenerationException
-
writeArrayValueSeparator
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:
writeArrayValueSeparatorin interfacePrettyPrinter- Throws:
IOExceptionJsonGenerationException
-
writeEndArray
public void writeEndArray(JsonGenerator jg, int nrOfValues) throws IOException, JsonGenerationException Description copied from interface:PrettyPrinterMethod 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:
writeEndArrayin interfacePrettyPrinter- Parameters:
nrOfValues- Number of direct members of the array that have been output- Throws:
IOExceptionJsonGenerationException
-