Uses of Interface
com.helger.xml.serialize.write.IXMLWriterSettings
-
Packages that use IXMLWriterSettings Package Description com.helger.xml.microdom.serialize com.helger.xml.serialize.read com.helger.xml.serialize.write -
-
Uses of IXMLWriterSettings in com.helger.xml.microdom.serialize
Methods in com.helger.xml.microdom.serialize with parameters of type IXMLWriterSettings Modifier and Type Method Description static byte[]MicroWriter. getNodeAsBytes(IMicroNode aNode, IXMLWriterSettings aSettings)Convert the passed micro node to an XML byte array using the provided settings.static StringMicroWriter. getNodeAsString(IMicroNode aNode, IXMLWriterSettings aSettings)Convert the passed micro node to an XML string using the provided settings.static com.helger.commons.state.ESuccessMicroWriter. writeToFile(IMicroNode aNode, File aFile, IXMLWriterSettings aSettings)Write a Micro Node to a file.static com.helger.commons.state.ESuccessMicroWriter. writeToFile(IMicroNode aNode, Path aPath, IXMLWriterSettings aSettings)Write a Micro Node to a file.static com.helger.commons.state.ESuccessMicroWriter. writeToStream(IMicroNode aNode, OutputStream aOS, IXMLWriterSettings aSettings)Write a Micro Node to anOutputStream.static com.helger.commons.state.ESuccessMicroWriter. writeToWriter(IMicroNode aNode, Writer aWriter, IXMLWriterSettings aSettings)Write a Micro Node to aWriter.Constructors in com.helger.xml.microdom.serialize with parameters of type IXMLWriterSettings Constructor Description MicroDOMInputStreamProvider(IMicroNode aNode, IXMLWriterSettings aSettings)Constructor for micro nodes.MicroSerializer(IXMLWriterSettings aSettings) -
Uses of IXMLWriterSettings in com.helger.xml.serialize.read
Constructors in com.helger.xml.serialize.read with parameters of type IXMLWriterSettings Constructor Description DOMInputStreamProvider(Node aNode, IXMLWriterSettings aSettings)Constructor for W3C nodes. -
Uses of IXMLWriterSettings in com.helger.xml.serialize.write
Classes in com.helger.xml.serialize.write that implement IXMLWriterSettings Modifier and Type Class Description classXMLWriterSettingsDefault implementation of theIXMLWriterSettingsinterface.
Describes the export settings for the MicroWriter.Fields in com.helger.xml.serialize.write declared as IXMLWriterSettings Modifier and Type Field Description static IXMLWriterSettingsXMLWriterSettings. DEFAULT_XML_SETTINGSThe default settings to use - last constantprotected IXMLWriterSettingsAbstractXMLSerializer. m_aSettingsThe serialization settingsMethods in com.helger.xml.serialize.write that return IXMLWriterSettings Modifier and Type Method Description IXMLWriterSettingsAbstractXMLSerializer. getSettings()IXMLWriterSettingsXMLEmitter. getXMLWriterSettings()Methods in com.helger.xml.serialize.write with parameters of type IXMLWriterSettings Modifier and Type Method Description static SafeXMLStreamWriterSafeXMLStreamWriter. create(OutputStream aOS, IXMLWriterSettings aSettings)static SafeXMLStreamWriterSafeXMLStreamWriter. create(Writer aWriter, IXMLWriterSettings aSettings)protected XMLEmitterAbstractXMLSerializer. createXMLEmitter(Writer aWriter, IXMLWriterSettings aSettings)static byte[]XMLWriter. getNodeAsBytes(Node aNode, IXMLWriterSettings aSettings)Convert the passed DOM node to an XML byte array using the provided XML writer settings.static StringXMLWriter. getNodeAsString(Node aNode, IXMLWriterSettings aSettings)Convert the passed DOM node to an XML string using the provided XML writer settings.static com.helger.commons.state.ESuccessXMLWriter. writeToStream(Node aNode, OutputStream aOS, IXMLWriterSettings aSettings)Write a node to anOutputStreamusing custom settings.static com.helger.commons.state.ESuccessXMLWriter. writeToWriter(Node aNode, Writer aWriter, IXMLWriterSettings aSettings)Write a node to aWriterusing the default settings.Constructors in com.helger.xml.serialize.write with parameters of type IXMLWriterSettings Constructor Description AbstractXMLSerializer(IXMLWriterSettings aSettings)XMLEmitter(Writer aWriter, IXMLWriterSettings aSettings)XMLSerializer(IXMLWriterSettings aSettings)XMLWriterSettings(IXMLWriterSettings aOther)Copy constructor.
-