Class DocumentBuilderFactory
- java.lang.Object
-
- nl.nn.adapterframework.stream.document.DocumentBuilderFactory
-
public class DocumentBuilderFactory extends Object
-
-
Constructor Summary
Constructors Constructor Description DocumentBuilderFactory()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ArrayBuilder
startArrayDocument(DocumentFormat format, String rootElement, String elementName)
static ArrayBuilder
startArrayDocument(DocumentFormat format, String rootElement, String elementName, MessageOutputStream outputStream, boolean prettyPrint)
static IDocumentBuilder
startDocument(String rootElement, ContentHandler handler, boolean prettyPrint)
static IDocumentBuilder
startDocument(DocumentFormat format, String rootElement)
static IDocumentBuilder
startDocument(DocumentFormat format, String rootElement, MessageOutputStream outputStream, boolean prettyPrint)
static IDocumentBuilder
startDocument(JsonEventHandler handler)
static ObjectBuilder
startObjectDocument(DocumentFormat format, String rootElement)
static ObjectBuilder
startObjectDocument(DocumentFormat format, String rootElement, MessageOutputStream outputStream, boolean prettyPrint)
-
-
-
Method Detail
-
startDocument
public static IDocumentBuilder startDocument(DocumentFormat format, String rootElement, MessageOutputStream outputStream, boolean prettyPrint) throws SAXException, StreamingException
- Throws:
SAXException
StreamingException
-
startDocument
public static IDocumentBuilder startDocument(DocumentFormat format, String rootElement) throws SAXException
- Throws:
SAXException
-
startDocument
public static IDocumentBuilder startDocument(String rootElement, ContentHandler handler, boolean prettyPrint) throws SAXException
- Throws:
SAXException
-
startDocument
public static IDocumentBuilder startDocument(JsonEventHandler handler) throws SAXException
- Throws:
SAXException
-
startObjectDocument
public static ObjectBuilder startObjectDocument(DocumentFormat format, String rootElement, MessageOutputStream outputStream, boolean prettyPrint) throws SAXException, StreamingException
- Throws:
SAXException
StreamingException
-
startObjectDocument
public static ObjectBuilder startObjectDocument(DocumentFormat format, String rootElement) throws SAXException
- Throws:
SAXException
-
startArrayDocument
public static ArrayBuilder startArrayDocument(DocumentFormat format, String rootElement, String elementName, MessageOutputStream outputStream, boolean prettyPrint) throws SAXException, StreamingException
- Throws:
SAXException
StreamingException
-
startArrayDocument
public static ArrayBuilder startArrayDocument(DocumentFormat format, String rootElement, String elementName) throws SAXException
- Throws:
SAXException
-
-