Uses of Interface
org.xmlpull.v1.builder.Iterable
-
Packages that use Iterable 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 -
-
Uses of Iterable in org.xmlpull.v1.builder
Methods in org.xmlpull.v1.builder that return Iterable Modifier and Type Method Description IterableXmlDocument. children()An ordered list of child information items, in document order.IterableXmlElement. elements(XmlNamespace n, String name)Return all elements that has namespace and name (null is never returned but empty iteraotr)IterableXmlDocument. notations()An unordered set of notation information items, one for each notation declared in the DTD.IterableXmlElement. requiredElementContent()Return Iterator- that represents all XmlElement content. IterableXmlDocument. unparsedEntities()An unordered set of unparsed entity information items, one for each unparsed entity declared in the DTD. -
Uses of Iterable in org.xmlpull.v1.builder.adapter
Methods in org.xmlpull.v1.builder.adapter that return Iterable Modifier and Type Method Description IterableXmlDocumentAdapter. children()IterableXmlElementAdapter. elements(XmlNamespace n, String name)IterableXmlDocumentAdapter. notations()IterableXmlElementAdapter. requiredElementContent()IterableXmlDocumentAdapter. unparsedEntities() -
Uses of Iterable in org.xmlpull.v1.builder.impl
Methods in org.xmlpull.v1.builder.impl that return Iterable Modifier and Type Method Description IterableXmlDocumentImpl. children()An ordered list of child information items, in document order.IterableXmlElementImpl. elements(XmlNamespace n, String name)IterableXmlDocumentImpl. notations()An unordered set of notation information items, one for each notation declared in the DTD.IterableXmlElementImpl. requiredElementContent()IterableXmlDocumentImpl. unparsedEntities()An unordered set of unparsed entity information items, one for each unparsed entity declared in the DTD.
-