XmlSiblingExtension extension

on

Properties

nextElementSibling XmlElement?

Available on XmlNode, provided by the XmlSiblingExtension extension

Return the next element sibling of this node, or null.
no setter
nextSibling XmlNode?

Available on XmlNode, provided by the XmlSiblingExtension extension

Return the next sibling of this node, or null.
no setter
previousElementSibling XmlElement?

Available on XmlNode, provided by the XmlSiblingExtension extension

Return the previous element sibling of this node, or null.
no setter
previousSibling XmlNode?

Available on XmlNode, provided by the XmlSiblingExtension extension

Return the previous sibling of this node, or null.
no setter
siblingElements List<XmlElement>

Available on XmlNode, provided by the XmlSiblingExtension extension

Returns an Iterable over the XmlElement siblings of this node. If the node has no parent or no siblings, return an empty collection.
no setter
siblings List<XmlNode>

Available on XmlNode, provided by the XmlSiblingExtension extension

Returns a List of the siblings of this node. Throws an XmlParentException if the node has no parent.
no setter