Class DefaultXmlPrettyPrinter
java.lang.Object
com.fasterxml.jackson.dataformat.xml.util.DefaultXmlPrettyPrinter
- All Implemented Interfaces:
com.fasterxml.jackson.core.PrettyPrinter, com.fasterxml.jackson.core.util.Instantiatable<DefaultXmlPrettyPrinter>, XmlPrettyPrinter, Serializable
public class DefaultXmlPrettyPrinter
extends Object
implements XmlPrettyPrinter, com.fasterxml.jackson.core.util.Instantiatable<DefaultXmlPrettyPrinter>, Serializable
Indentation to use with XML is different from JSON, because JSON
requires use of separator characters and XML just basic whitespace.
Note that only a subset of methods of PrettyPrinter actually
get called by ToXmlGenerator; because of this, implementation
is bit briefer (and uglier...).
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected static classThis is a very simple indenter that only every adds a single space for indentation.static interfaceInterface that defines objects that can produce indentation used to separate object entries and array values.protected classDefault linefeed-based indenter uses system-specific linefeeds and 2 spaces for indentation per level.protected static classDummy implementation that adds no indentation whatsoever -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected DefaultXmlPrettyPrinter.IndenterBy default, let's use only spaces to separate array values.protected booleanMarker flag set on start element, and cleared if an end element is encountered.protected intNumber of open levels of nesting.protected Stringprotected DefaultXmlPrettyPrinter.IndenterBy default, let's use linefeed-adding indenter for separate object entries.private static final long(package private) static final int(package private) static final char[]private static final StringBy default, will try to set as System.getProperty("line.separator").Fields inherited from interface com.fasterxml.jackson.core.PrettyPrinter
DEFAULT_ROOT_VALUE_SEPARATOR, DEFAULT_SEPARATORS -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected -
Method Summary
Modifier and TypeMethodDescriptionvoidbeforeArrayValues(com.fasterxml.jackson.core.JsonGenerator gen) voidbeforeObjectEntries(com.fasterxml.jackson.core.JsonGenerator gen) voidvoidwithCustomNewLine(String newLine) Sets custom new-line.voidwriteArrayValueSeparator(com.fasterxml.jackson.core.JsonGenerator gen) voidwriteEndArray(com.fasterxml.jackson.core.JsonGenerator gen, int nrOfValues) voidwriteEndElement(org.codehaus.stax2.XMLStreamWriter2 sw, int nrOfEntries) Method for forcibly writing an end element, without going through Jackson generator (and thus, without updating currently active element stack)voidwriteEndObject(com.fasterxml.jackson.core.JsonGenerator gen, int nrOfEntries) voidwriteLeafElement(org.codehaus.stax2.XMLStreamWriter2 sw, String nsURI, String localName, boolean value) voidwriteLeafElement(org.codehaus.stax2.XMLStreamWriter2 sw, String nsURI, String localName, char[] buffer, int offset, int len, boolean isCData) voidwriteLeafElement(org.codehaus.stax2.XMLStreamWriter2 sw, String nsURI, String localName, double value) voidwriteLeafElement(org.codehaus.stax2.XMLStreamWriter2 sw, String nsURI, String localName, float value) voidwriteLeafElement(org.codehaus.stax2.XMLStreamWriter2 sw, String nsURI, String localName, int value) voidwriteLeafElement(org.codehaus.stax2.XMLStreamWriter2 sw, String nsURI, String localName, long value) voidwriteLeafElement(org.codehaus.stax2.XMLStreamWriter2 sw, String nsURI, String localName, String text, boolean isCData) voidwriteLeafElement(org.codehaus.stax2.XMLStreamWriter2 sw, String nsURI, String localName, BigDecimal value) voidwriteLeafElement(org.codehaus.stax2.XMLStreamWriter2 sw, String nsURI, String localName, BigInteger value) voidwriteLeafElement(org.codehaus.stax2.XMLStreamWriter2 sw, String nsURI, String localName, org.codehaus.stax2.typed.Base64Variant base64variant, byte[] data, int offset, int len) voidwriteLeafNullElement(org.codehaus.stax2.XMLStreamWriter2 sw, String nsURI, String localName) voidwriteLeafXsiNilElement(org.codehaus.stax2.XMLStreamWriter2 sw, String nsURI, String localName) voidwriteObjectEntrySeparator(com.fasterxml.jackson.core.JsonGenerator gen) voidwriteObjectFieldValueSeparator(com.fasterxml.jackson.core.JsonGenerator gen) voidwritePrologLinefeed(org.codehaus.stax2.XMLStreamWriter2 sw) Method for trying to write a linefeed to separate entities outside of the root element (that is, in prolog or epilog), most often called to separate XML declaration from the root element.voidwriteRootValueSeparator(com.fasterxml.jackson.core.JsonGenerator gen) voidwriteStartArray(com.fasterxml.jackson.core.JsonGenerator gen) voidwriteStartElement(org.codehaus.stax2.XMLStreamWriter2 sw, String nsURI, String localName) Method for forcibly writing a start element, without going through Jackson generator (and thus, without updating currently active element stack)voidwriteStartObject(com.fasterxml.jackson.core.JsonGenerator gen)
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
_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) -
SYSTEM_DEFAULT_NEW_LINE
By default, will try to set as System.getProperty("line.separator"). Can later set custom new line with withCustomNewLine method.- Since:
- 2.15
-
_newLine
-
SPACE_COUNT
static final int SPACE_COUNT- See Also:
-
SPACES
static final char[] SPACES -
_nesting
protected transient int _nestingNumber of open levels of nesting. Used to determine amount of indentation to use. -
_justHadStartElement
protected transient boolean _justHadStartElementMarker flag set on start element, and cleared if an end element is encountered. Used for suppressing indentation to allow empty elements.- Since:
- 2.3
-
-
Constructor Details
-
DefaultXmlPrettyPrinter
public DefaultXmlPrettyPrinter() -
DefaultXmlPrettyPrinter
-
-
Method Details
-
indentArraysWith
-
indentObjectsWith
-
withCustomNewLine
-
createInstance
- Specified by:
createInstancein interfacecom.fasterxml.jackson.core.util.Instantiatable<DefaultXmlPrettyPrinter>
-
writeRootValueSeparator
public void writeRootValueSeparator(com.fasterxml.jackson.core.JsonGenerator gen) throws IOException - Specified by:
writeRootValueSeparatorin interfacecom.fasterxml.jackson.core.PrettyPrinter- Throws:
IOException
-
beforeArrayValues
- Specified by:
beforeArrayValuesin interfacecom.fasterxml.jackson.core.PrettyPrinter- Throws:
IOException
-
writeStartArray
- Specified by:
writeStartArrayin interfacecom.fasterxml.jackson.core.PrettyPrinter- Throws:
IOException
-
writeArrayValueSeparator
public void writeArrayValueSeparator(com.fasterxml.jackson.core.JsonGenerator gen) throws IOException - Specified by:
writeArrayValueSeparatorin interfacecom.fasterxml.jackson.core.PrettyPrinter- Throws:
IOException
-
writeEndArray
public void writeEndArray(com.fasterxml.jackson.core.JsonGenerator gen, int nrOfValues) throws IOException - Specified by:
writeEndArrayin interfacecom.fasterxml.jackson.core.PrettyPrinter- Throws:
IOException
-
beforeObjectEntries
public void beforeObjectEntries(com.fasterxml.jackson.core.JsonGenerator gen) throws IOException, com.fasterxml.jackson.core.JsonGenerationException - Specified by:
beforeObjectEntriesin interfacecom.fasterxml.jackson.core.PrettyPrinter- Throws:
IOExceptioncom.fasterxml.jackson.core.JsonGenerationException
-
writeStartObject
- Specified by:
writeStartObjectin interfacecom.fasterxml.jackson.core.PrettyPrinter- Throws:
IOException
-
writeObjectEntrySeparator
public void writeObjectEntrySeparator(com.fasterxml.jackson.core.JsonGenerator gen) throws IOException - Specified by:
writeObjectEntrySeparatorin interfacecom.fasterxml.jackson.core.PrettyPrinter- Throws:
IOException
-
writeObjectFieldValueSeparator
public void writeObjectFieldValueSeparator(com.fasterxml.jackson.core.JsonGenerator gen) throws IOException - Specified by:
writeObjectFieldValueSeparatorin interfacecom.fasterxml.jackson.core.PrettyPrinter- Throws:
IOException
-
writeEndObject
public void writeEndObject(com.fasterxml.jackson.core.JsonGenerator gen, int nrOfEntries) throws IOException - Specified by:
writeEndObjectin interfacecom.fasterxml.jackson.core.PrettyPrinter- Throws:
IOException
-
writeStartElement
public void writeStartElement(org.codehaus.stax2.XMLStreamWriter2 sw, String nsURI, String localName) throws XMLStreamException Description copied from interface:XmlPrettyPrinterMethod for forcibly writing a start element, without going through Jackson generator (and thus, without updating currently active element stack)- Specified by:
writeStartElementin interfaceXmlPrettyPrinter- Throws:
XMLStreamException
-
writeEndElement
public void writeEndElement(org.codehaus.stax2.XMLStreamWriter2 sw, int nrOfEntries) throws XMLStreamException Description copied from interface:XmlPrettyPrinterMethod for forcibly writing an end element, without going through Jackson generator (and thus, without updating currently active element stack)- Specified by:
writeEndElementin interfaceXmlPrettyPrinter- Throws:
XMLStreamException
-
writeLeafElement
public void writeLeafElement(org.codehaus.stax2.XMLStreamWriter2 sw, String nsURI, String localName, String text, boolean isCData) throws XMLStreamException - Specified by:
writeLeafElementin interfaceXmlPrettyPrinter- Throws:
XMLStreamException
-
writeLeafElement
public void writeLeafElement(org.codehaus.stax2.XMLStreamWriter2 sw, String nsURI, String localName, char[] buffer, int offset, int len, boolean isCData) throws XMLStreamException - Specified by:
writeLeafElementin interfaceXmlPrettyPrinter- Throws:
XMLStreamException
-
writeLeafElement
public void writeLeafElement(org.codehaus.stax2.XMLStreamWriter2 sw, String nsURI, String localName, boolean value) throws XMLStreamException - Specified by:
writeLeafElementin interfaceXmlPrettyPrinter- Throws:
XMLStreamException
-
writeLeafElement
public void writeLeafElement(org.codehaus.stax2.XMLStreamWriter2 sw, String nsURI, String localName, int value) throws XMLStreamException - Specified by:
writeLeafElementin interfaceXmlPrettyPrinter- Throws:
XMLStreamException
-
writeLeafElement
public void writeLeafElement(org.codehaus.stax2.XMLStreamWriter2 sw, String nsURI, String localName, long value) throws XMLStreamException - Specified by:
writeLeafElementin interfaceXmlPrettyPrinter- Throws:
XMLStreamException
-
writeLeafElement
public void writeLeafElement(org.codehaus.stax2.XMLStreamWriter2 sw, String nsURI, String localName, double value) throws XMLStreamException - Specified by:
writeLeafElementin interfaceXmlPrettyPrinter- Throws:
XMLStreamException
-
writeLeafElement
public void writeLeafElement(org.codehaus.stax2.XMLStreamWriter2 sw, String nsURI, String localName, float value) throws XMLStreamException - Specified by:
writeLeafElementin interfaceXmlPrettyPrinter- Throws:
XMLStreamException
-
writeLeafElement
public void writeLeafElement(org.codehaus.stax2.XMLStreamWriter2 sw, String nsURI, String localName, BigInteger value) throws XMLStreamException - Specified by:
writeLeafElementin interfaceXmlPrettyPrinter- Throws:
XMLStreamException
-
writeLeafElement
public void writeLeafElement(org.codehaus.stax2.XMLStreamWriter2 sw, String nsURI, String localName, BigDecimal value) throws XMLStreamException - Specified by:
writeLeafElementin interfaceXmlPrettyPrinter- Throws:
XMLStreamException
-
writeLeafElement
public void writeLeafElement(org.codehaus.stax2.XMLStreamWriter2 sw, String nsURI, String localName, org.codehaus.stax2.typed.Base64Variant base64variant, byte[] data, int offset, int len) throws XMLStreamException - Specified by:
writeLeafElementin interfaceXmlPrettyPrinter- Throws:
XMLStreamException
-
writeLeafNullElement
public void writeLeafNullElement(org.codehaus.stax2.XMLStreamWriter2 sw, String nsURI, String localName) throws XMLStreamException - Specified by:
writeLeafNullElementin interfaceXmlPrettyPrinter- Throws:
XMLStreamException
-
writeLeafXsiNilElement
public void writeLeafXsiNilElement(org.codehaus.stax2.XMLStreamWriter2 sw, String nsURI, String localName) throws XMLStreamException - Throws:
XMLStreamException
-
writePrologLinefeed
Description copied from interface:XmlPrettyPrinterMethod for trying to write a linefeed to separate entities outside of the root element (that is, in prolog or epilog), most often called to separate XML declaration from the root element.- Specified by:
writePrologLinefeedin interfaceXmlPrettyPrinter- Throws:
XMLStreamException
-