Class DefaultPrettyPrinter
- All Implemented Interfaces:
PrettyPrinter,Instantiatable<DefaultPrettyPrinter>,Serializable
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.
If you override this class, take note of Instantiatable,
as subclasses will still create an instance of DefaultPrettyPrinter.
This class is designed for the JSON data format. It works on other formats
with same logical model (such as binary CBOR and Smile formats),
but may not work as-is for other data formats, most notably XML.
It may be necessary to use format-specific PrettyPrinter
implementation specific to that format.
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classThis is a very simple indenter that only adds a single space for indentation.static interfaceInterface that defines objects that can produce indentation used to separate object entries and array values.static classDummy implementation that adds no indentation whatsoever -
Field Summary
FieldsFields inherited from interface com.fasterxml.jackson.core.PrettyPrinter
DEFAULT_SEPARATORS -
Constructor Summary
ConstructorsConstructorDescriptionDefaultPrettyPrinter(SerializableString rootSeparator) Deprecated.in 2.16.Copy constructorDefaultPrettyPrinter(DefaultPrettyPrinter base, SerializableString rootSeparator) Deprecated.in 2.16.DefaultPrettyPrinter(Separators separators) DefaultPrettyPrinter(String rootSeparator) Deprecated.in 2.16. -
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.Method called to ensure that we have a non-blueprint object to use; it is either this object (if stateless), or a newly created object with separate state.voidvoidDeprecated.in 2.16.withRootSeparator(SerializableString rootSeparator) Deprecated.in 2.16.withRootSeparator(String rootSeparator) Deprecated.in 2.16.withSeparators(Separators separators) Method for configuring separators for this pretty-printer to useDeprecated.in 2.16.voidMethod called after an array value has been completely output, and before another value is to be output.voidwriteEndArray(JsonGenerator g, int nrOfValues) Method called after an Array value has been completely output (minus closing bracket).voidwriteEndObject(JsonGenerator g, 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
-
DEFAULT_ROOT_VALUE_SEPARATOR
Deprecated.in 2.16. Use the Separators API instead.Constant that specifies default "root-level" separator to use between root values: a single space character.- Since:
- 2.1
-
-
Constructor Details
-
DefaultPrettyPrinter
public DefaultPrettyPrinter() -
DefaultPrettyPrinter
Deprecated.in 2.16. Use the Separators API instead.Constructor that specifies separator String to use between root values; if null, no separator is printed.Note: simply constructs a
SerializedStringout of parameter, callsDefaultPrettyPrinter(SerializableString)- Parameters:
rootSeparator- String to use as root value separator
-
DefaultPrettyPrinter
Deprecated.in 2.16. Use the Separators API instead.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
-
DefaultPrettyPrinter
@Deprecated public DefaultPrettyPrinter(DefaultPrettyPrinter base, SerializableString rootSeparator) Deprecated.in 2.16. Use the Separators API instead. -
DefaultPrettyPrinter
- Since:
- 2.16
-
DefaultPrettyPrinter
Copy constructor- Since:
- 2.16
-
-
Method Details
-
withRootSeparator
Deprecated.in 2.16. Use the Separators API instead. -
withRootSeparator
Deprecated.in 2.16. Use the Separators API instead.- Parameters:
rootSeparator- Root-level value separator to use- Returns:
- This pretty-printer instance (for call chaining)
- Since:
- 2.6
-
indentArraysWith
-
indentObjectsWith
-
withArrayIndenter
- Since:
- 2.3
-
withObjectIndenter
- Since:
- 2.3
-
withSpacesInObjectEntries
Deprecated.in 2.16. Use the Separators API instead."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
Deprecated.in 2.16. Use the Separators API instead."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
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
-
createInstance
Description copied from interface:InstantiatableMethod called to ensure that we have a non-blueprint object to use; it is either this object (if stateless), or a newly created object with separate state.- Specified by:
createInstancein interfaceInstantiatable<DefaultPrettyPrinter>- Returns:
- Actual instance to use
-
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- Parameters:
g- Generator used for output- Throws:
IOException- if there is either an underlying I/O problem or encoding issue at format layer
-
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- Parameters:
g- Generator used for output- Throws:
IOException- if there is either an underlying I/O problem or encoding issue at format layer
-
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- Parameters:
g- Generator used for output- Throws:
IOException- if there is either an underlying I/O problem or encoding issue at format layer
-
writeObjectFieldValueSeparator
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- Parameters:
g- Generator used for output- Throws:
IOException- if there is either an underlying I/O problem or encoding issue at format layer
-
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- Parameters:
g- Generator used for output- Throws:
IOException- if there is either an underlying I/O problem or encoding issue at format layer
-
writeEndObject
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:
g- Generator used for outputnrOfEntries- Number of direct members of the Object that have been output- Throws:
IOException- if there is either an underlying I/O problem or encoding issue at format layer
-
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- Parameters:
g- Generator used for output- Throws:
IOException- if there is either an underlying I/O problem or encoding issue at format layer
-
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- Parameters:
g- Generator used for output- Throws:
IOException- if there is either an underlying I/O problem or encoding issue at format layer
-
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- Parameters:
g- Generator used for output- Throws:
IOException- if there is either an underlying I/O problem or encoding issue at format layer
-
writeEndArray
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:
g- Generator used for outputnrOfValues- Number of direct members of the array that have been output- Throws:
IOException- if there is either an underlying I/O problem or encoding issue at format layer
-