Interface PrettyPrinter
-
- All Known Implementing Classes:
DefaultPrettyPrinter,DefaultPrettyPrinter,MinimalPrettyPrinter
public interface PrettyPrinterInterface for objects that implement pretty printer functionality, such as indentation. Pretty printers are used to add white space in output JSON content, to make results more human readable. Usually this means things like adding linefeeds and indentation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidbeforeArrayValues(JsonGenerator jg)Method called after array start marker has been output, and right before the first value is to be output.voidbeforeObjectEntries(JsonGenerator jg)Method called after object start marker has been output, and right before the field name of the first entry is to be output.voidwriteArrayValueSeparator(JsonGenerator jg)Method 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).voidwriteObjectEntrySeparator(JsonGenerator jg)Method called after an object entry (field:value) has been completely output, and before another value is to be output.voidwriteObjectFieldValueSeparator(JsonGenerator jg)Method called after an object field has been output, but before the value is output.voidwriteRootValueSeparator(JsonGenerator jg)Method called after a root-level value has been completely output, and before another value is to be output.voidwriteStartArray(JsonGenerator jg)Method called when an Array value is to be output, before any member/child values are output.voidwriteStartObject(JsonGenerator jg)Method called when an Object value is to be output, before any fields are output.
-
-
-
Method Detail
-
writeRootValueSeparator
void writeRootValueSeparator(JsonGenerator jg) throws java.io.IOException, JsonGenerationException
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).
- Throws:
java.io.IOExceptionJsonGenerationException
-
writeStartObject
void writeStartObject(JsonGenerator jg) throws java.io.IOException, JsonGenerationException
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.
- Throws:
java.io.IOExceptionJsonGenerationException
-
writeEndObject
void writeEndObject(JsonGenerator jg, int nrOfEntries) throws java.io.IOException, JsonGenerationException
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.
- Parameters:
nrOfEntries- Number of direct members of the array that have been output- Throws:
java.io.IOExceptionJsonGenerationException
-
writeObjectEntrySeparator
void writeObjectEntrySeparator(JsonGenerator jg) throws java.io.IOException, JsonGenerationException
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.
- Throws:
java.io.IOExceptionJsonGenerationException
-
writeObjectFieldValueSeparator
void writeObjectFieldValueSeparator(JsonGenerator jg) throws java.io.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.
- Throws:
java.io.IOExceptionJsonGenerationException
-
writeStartArray
void writeStartArray(JsonGenerator jg) throws java.io.IOException, JsonGenerationException
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.
- Throws:
java.io.IOExceptionJsonGenerationException
-
writeEndArray
void writeEndArray(JsonGenerator jg, int nrOfValues) throws java.io.IOException, JsonGenerationException
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.
- Parameters:
nrOfValues- Number of direct members of the array that have been output- Throws:
java.io.IOExceptionJsonGenerationException
-
writeArrayValueSeparator
void writeArrayValueSeparator(JsonGenerator jg) throws java.io.IOException, JsonGenerationException
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.
- Throws:
java.io.IOExceptionJsonGenerationException
-
beforeArrayValues
void beforeArrayValues(JsonGenerator jg) throws java.io.IOException, JsonGenerationException
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.
- Throws:
java.io.IOExceptionJsonGenerationException
-
beforeObjectEntries
void beforeObjectEntries(JsonGenerator jg) throws java.io.IOException, JsonGenerationException
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.
- Throws:
java.io.IOExceptionJsonGenerationException
-
-