| Package | Description |
|---|---|
| net.shibboleth.utilities.java.support.xml |
A set of helper functions for performing actions on DOM nodes.
|
| Modifier and Type | Method and Description |
|---|---|
protected javax.xml.parsers.DocumentBuilder |
BasicParserPool.createBuilder()
Creates a new document builder.
|
javax.xml.parsers.DocumentBuilder |
ParserPool.getBuilder()
Gets a builder from the pool.
|
javax.xml.parsers.DocumentBuilder |
BasicParserPool.getBuilder()
Gets a builder from the pool.
|
org.w3c.dom.Document |
ParserPool.newDocument()
Convenience method for creating a new document with a pooled builder.
|
org.w3c.dom.Document |
BasicParserPool.newDocument()
Convenience method for creating a new document with a pooled builder.
|
org.w3c.dom.Document |
ParserPool.parse(java.io.InputStream input)
Convenience method for parsing an XML file using a pooled builder.
|
org.w3c.dom.Document |
BasicParserPool.parse(java.io.InputStream input)
Convenience method for parsing an XML file using a pooled builder.
|
org.w3c.dom.Document |
ParserPool.parse(java.io.Reader input)
Convenience method for parsing an XML file using a pooled builder.
|
org.w3c.dom.Document |
BasicParserPool.parse(java.io.Reader input)
Convenience method for parsing an XML file using a pooled builder.
|