| 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 |
|---|---|
XmlAttribute |
XmlElement.addAttribute(String name,
String value)
addAttribute
|
XmlAttribute |
XmlElement.addAttribute(String attributeType,
String attributePrefix,
String attributeNamespace,
String attributeName,
String attributeValue,
boolean specified)
Method addAttribute
|
XmlAttribute |
XmlElement.addAttribute(String type,
XmlNamespace namespace,
String name,
String value)
Method addAttribute
|
XmlAttribute |
XmlElement.addAttribute(String type,
XmlNamespace namespace,
String name,
String value,
boolean specified)
Method addAttribute
|
XmlAttribute |
XmlElement.addAttribute(XmlAttribute attributeValueToAdd)
Add attribute (adds it to the XML Infoset [namespace attributes] set)
Attribute mist
|
XmlAttribute |
XmlElement.addAttribute(XmlNamespace namespace,
String name,
String value)
Method addAttribute
|
XmlAttribute |
XmlElement.attribute(String attributeName)
Find attribute that matches given name or namespace
Returns null if not found.
|
XmlAttribute |
XmlElement.attribute(XmlNamespace attributeNamespaceName,
String attributeName)
Find attribute that matches given name or namespace
Returns null if not found.
|
XmlAttribute |
XmlElement.findAttribute(String attributeNamespaceName,
String attributeName)
Deprecated.
Use attribute()
|
| Modifier and Type | Method and Description |
|---|---|
XmlAttribute |
XmlElement.addAttribute(XmlAttribute attributeValueToAdd)
Add attribute (adds it to the XML Infoset [namespace attributes] set)
Attribute mist
|
void |
XmlElement.removeAttribute(XmlAttribute attr)
Method removeAttribute
|
| Modifier and Type | Class and Description |
|---|---|
class |
XmlAttributeAdapter
Wraps XML attribute - allows overriding and other nice things.
|
| Modifier and Type | Method and Description |
|---|---|
XmlAttribute |
XmlElementAdapter.addAttribute(String name,
String value) |
XmlAttribute |
XmlElementAdapter.addAttribute(String attributeType,
String attributePrefix,
String attributeNamespace,
String attributeName,
String attributeValue,
boolean specified) |
XmlAttribute |
XmlElementAdapter.addAttribute(String type,
XmlNamespace namespace,
String name,
String value) |
XmlAttribute |
XmlElementAdapter.addAttribute(String type,
XmlNamespace namespace,
String name,
String value,
boolean specified) |
XmlAttribute |
XmlElementAdapter.addAttribute(XmlAttribute attributeValueToAdd) |
XmlAttribute |
XmlElementAdapter.addAttribute(XmlNamespace namespace,
String name,
String value) |
XmlAttribute |
XmlElementAdapter.attribute(String attributeName) |
XmlAttribute |
XmlElementAdapter.attribute(XmlNamespace attributeNamespaceName,
String attributeName) |
XmlAttribute |
XmlElementAdapter.findAttribute(String attributeNamespaceName,
String attributeName) |
| Modifier and Type | Method and Description |
|---|---|
XmlAttribute |
XmlElementAdapter.addAttribute(XmlAttribute attributeValueToAdd) |
void |
XmlElementAdapter.removeAttribute(XmlAttribute attr) |
| Constructor and Description |
|---|
XmlAttributeAdapter(XmlAttribute target) |
| Modifier and Type | Class and Description |
|---|---|
class |
XmlAttributeImpl
Simple implementation.
|
| Modifier and Type | Method and Description |
|---|---|
XmlAttribute |
XmlElementImpl.addAttribute(String name,
String value) |
XmlAttribute |
XmlElementImpl.addAttribute(String attributeType,
String attributePrefix,
String attributeNamespace,
String attributeName,
String attributeValue,
boolean specified) |
XmlAttribute |
XmlElementImpl.addAttribute(String attributeType,
XmlNamespace namespace,
String name,
String value) |
XmlAttribute |
XmlElementImpl.addAttribute(String attributeType,
XmlNamespace namespace,
String name,
String value,
boolean specified) |
XmlAttribute |
XmlElementImpl.addAttribute(XmlAttribute attributeValueToAdd) |
XmlAttribute |
XmlElementImpl.addAttribute(XmlNamespace namespace,
String name,
String value) |
XmlAttribute |
XmlElementImpl.attribute(String attributeName) |
XmlAttribute |
XmlElementImpl.attribute(XmlNamespace attributeNamespace,
String attributeName) |
XmlAttribute |
XmlElementImpl.findAttribute(String attributeNamespace,
String attributeName)
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
XmlAttribute |
XmlElementImpl.addAttribute(XmlAttribute attributeValueToAdd) |
void |
XmlElementImpl.removeAttribute(XmlAttribute attr) |
Copyright © 2013. All Rights Reserved.