Package org.postgresql.xml
Interface PGXmlFactoryFactory
-
- All Known Implementing Classes:
DefaultPGXmlFactoryFactory
,LegacyInsecurePGXmlFactoryFactory
public interface PGXmlFactoryFactory
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.xml.sax.XMLReader
createXMLReader()
javax.xml.parsers.DocumentBuilder
newDocumentBuilder()
javax.xml.transform.sax.SAXTransformerFactory
newSAXTransformerFactory()
javax.xml.transform.TransformerFactory
newTransformerFactory()
javax.xml.stream.XMLInputFactory
newXMLInputFactory()
javax.xml.stream.XMLOutputFactory
newXMLOutputFactory()
-
-
-
Method Detail
-
newDocumentBuilder
javax.xml.parsers.DocumentBuilder newDocumentBuilder() throws javax.xml.parsers.ParserConfigurationException
- Throws:
javax.xml.parsers.ParserConfigurationException
-
newTransformerFactory
javax.xml.transform.TransformerFactory newTransformerFactory()
-
newSAXTransformerFactory
javax.xml.transform.sax.SAXTransformerFactory newSAXTransformerFactory()
-
newXMLInputFactory
javax.xml.stream.XMLInputFactory newXMLInputFactory()
-
newXMLOutputFactory
javax.xml.stream.XMLOutputFactory newXMLOutputFactory()
-
createXMLReader
org.xml.sax.XMLReader createXMLReader() throws org.xml.sax.SAXException
- Throws:
org.xml.sax.SAXException
-
-