Package org.nuxeo.common.xmap
Class DOMSerializer
- java.lang.Object
-
- org.nuxeo.common.xmap.DOMSerializer
-
public final class DOMSerializer extends Object
- Author:
- Bogdan Stefanescu
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DocumentBuilderFactorygetBuilderFactory()static DocumentFragmentgetContentAsFragment(Element element)static StringtoString(Document doc)static StringtoString(DocumentFragment fragment)static StringtoString(DocumentFragment fragment, org.apache.xml.serialize.OutputFormat format)static StringtoString(Document doc, org.apache.xml.serialize.OutputFormat format)static StringtoString(Element element)static StringtoString(Element element, org.apache.xml.serialize.OutputFormat format)static StringtoStringOmitXml(Element element)static voidwrite(DocumentFragment fragment, OutputStream out)static voidwrite(DocumentFragment fragment, org.apache.xml.serialize.OutputFormat format, OutputStream out)static voidwrite(Document doc, OutputStream out)static voidwrite(Document doc, org.apache.xml.serialize.OutputFormat format, OutputStream out)static voidwrite(Element element, OutputStream out)static voidwrite(Element element, org.apache.xml.serialize.OutputFormat format, OutputStream out)
-
-
-
Method Detail
-
getBuilderFactory
public static DocumentBuilderFactory getBuilderFactory()
- Returns:
- the builderFactory
-
toString
public static String toString(Element element) throws IOException
- Throws:
IOException
-
toStringOmitXml
public static String toStringOmitXml(Element element) throws IOException
- Throws:
IOException
-
toString
public static String toString(Element element, org.apache.xml.serialize.OutputFormat format) throws IOException
- Throws:
IOException
-
toString
public static String toString(DocumentFragment fragment) throws IOException
- Throws:
IOException
-
toString
public static String toString(DocumentFragment fragment, org.apache.xml.serialize.OutputFormat format) throws IOException
- Throws:
IOException
-
toString
public static String toString(Document doc) throws IOException
- Throws:
IOException
-
toString
public static String toString(Document doc, org.apache.xml.serialize.OutputFormat format) throws IOException
- Throws:
IOException
-
write
public static void write(Element element, OutputStream out) throws IOException
- Throws:
IOException
-
write
public static void write(Element element, org.apache.xml.serialize.OutputFormat format, OutputStream out) throws IOException
- Throws:
IOException
-
write
public static void write(DocumentFragment fragment, OutputStream out) throws IOException
- Throws:
IOException
-
write
public static void write(DocumentFragment fragment, org.apache.xml.serialize.OutputFormat format, OutputStream out) throws IOException
- Throws:
IOException
-
write
public static void write(Document doc, OutputStream out) throws IOException
- Throws:
IOException
-
write
public static void write(Document doc, org.apache.xml.serialize.OutputFormat format, OutputStream out) throws IOException
- Throws:
IOException
-
getContentAsFragment
public static DocumentFragment getContentAsFragment(Element element)
-
-