| Package | Description |
|---|---|
| org.xmlpull.v1.builder |
This package defines API modeled after
XML Information Set
for building incrmentally XML trees
from events streamed from pull parser
(user can start navigating tree before whole XML input was parsed!)
and has an unique ability to bypass tree building for selected sub trees
to work directly with underlying event stream.
|
| org.xmlpull.v1.builder.adapter | |
| org.xmlpull.v1.builder.impl |
| Modifier and Type | Method and Description |
|---|---|
Iterable |
XmlDocument.children()
An ordered list of child information items, in document order.
|
Iterable |
XmlElement.elements(XmlNamespace n,
String name)
Return all elements that has namespace and name (null is never returned but empty iteraotr)
|
Iterable |
XmlDocument.notations()
An unordered set of notation information items,
one for each notation declared in the DTD.
|
Iterable |
XmlElement.requiredElementContent()
Return Iterator
|
Iterable |
XmlDocument.unparsedEntities()
An unordered set of unparsed entity information items,
one for each unparsed entity declared in the DTD.
|
| Modifier and Type | Method and Description |
|---|---|
Iterable |
XmlDocumentAdapter.children() |
Iterable |
XmlElementAdapter.elements(XmlNamespace n,
String name) |
Iterable |
XmlDocumentAdapter.notations() |
Iterable |
XmlElementAdapter.requiredElementContent() |
Iterable |
XmlDocumentAdapter.unparsedEntities() |
| Modifier and Type | Method and Description |
|---|---|
Iterable |
XmlDocumentImpl.children()
An ordered list of child information items, in document order.
|
Iterable |
XmlElementImpl.elements(XmlNamespace n,
String name) |
Iterable |
XmlDocumentImpl.notations()
An unordered set of notation information items,
one for each notation declared in the DTD.
|
Iterable |
XmlElementImpl.requiredElementContent() |
Iterable |
XmlDocumentImpl.unparsedEntities()
An unordered set of unparsed entity information items,
one for each unparsed entity declared in the DTD.
|
Copyright © 2013. All Rights Reserved.