Package | Description |
---|---|
net.sf.mmm.util.xml.api |
Provides the API of utilities that help to deal with XML.
|
net.sf.mmm.util.xml.base |
Contains the base-implementation of the
XML-Util API . |
net.sf.mmm.util.xml.impl.stax |
Contains the implementation of the XML-Util API for StAX.
|
Modifier and Type | Class and Description |
---|---|
class |
XmlGenericException
A
XmlGenericException is used to wrap exceptions of underlying XML-frameworks such as StAX or SAX that throw
checked exceptions. |
Modifier and Type | Method and Description |
---|---|
XMLEventReader |
StaxUtil.createXmlEventReader(InputStream inputStream)
This method creates an
XMLEventReader . |
XMLStreamReader |
StaxUtil.createXmlStreamReader(DataResource resource,
boolean xIncludeAware)
This method creates an
XMLStreamReader . |
XMLStreamReader |
StaxUtil.createXmlStreamReader(InputStream inputStream)
This method creates an
XMLStreamReader . |
XMLStreamWriter |
StaxUtil.createXmlStreamWriter(OutputStream out)
This method creates a
XMLStreamWriter . |
XMLStreamWriter |
StaxUtil.createXmlStreamWriter(Writer writer)
This method creates a
XMLStreamWriter . |
Document |
DomUtil.parseDocument(InputSource inputSource)
This method parses an XML document into an DOM document.
|
Document |
DomUtil.parseDocument(InputStream inputStream)
This method parses an XML document from a given input stream.
|
Document |
DomUtil.parseDocument(Reader reader)
This method parses an XML document from a given reader.
|
void |
DomUtil.transformXml(Source source,
Result result,
boolean indent)
This method transforms the given XML source to the given result without structural modifications.
|
void |
DomUtil.writeXml(Node xmlNode,
OutputStream outputStream,
boolean indent)
This method writes the XML DOM tree given as node to the given output stream.
|
void |
DomUtil.writeXml(Node xmlNode,
Writer writer,
boolean indent)
This method writes the XML DOM tree given as node to the given writer.
|
Modifier and Type | Class and Description |
---|---|
class |
XmlInvalidException
|
Modifier and Type | Method and Description |
---|---|
XMLStreamReader |
StaxUtilImpl.createXmlStreamReader(DataResource resource,
boolean xIncludeAware) |
Document |
DomUtilImpl.parseDocument(InputSource inputSource) |
Document |
DomUtilImpl.parseDocument(InputStream inputStream) |
Document |
DomUtilImpl.parseDocument(Reader reader) |
void |
DomUtilImpl.transformXml(Source source,
Result result,
boolean indent) |
void |
DomUtilImpl.writeXml(Node xmlNode,
OutputStream outputStream,
boolean indent) |
void |
DomUtilImpl.writeXml(Node xmlNode,
Writer writer,
boolean indent) |
Modifier and Type | Method and Description |
---|---|
XMLStreamReader |
XPointerStreamBuilder.createStreamReader(XMLStreamReader xmlReader,
String xpointerExpression,
NamespaceContext namespaceContext)
This method creates a
XMLStreamReader facade that adapts the given xmlReader so only the contents
pointed by the given xpointerExpression are visible. |
Constructor and Description |
---|
XIncludeStreamReader(XMLInputFactory factory,
DataResource resource,
XIncludeStreamReader parent)
The constructor.
|
Copyright © 2001–2016 mmm-Team. All rights reserved.