Class XmlParser.Node
- All Implemented Interfaces:
 Iterable<Object>, Collection<Object>, List<Object>, SequencedCollection<Object>
- Enclosing class:
 XmlParser
XML Node. Represents an XML element with optional attributes and ordered content.
- 
Field Summary
Fields inherited from class AbstractList
modCount - 
Method Summary
Modifier and TypeMethodDescriptionvoidvoidclear()get(int i) Get the ith child node or content.Get the first child node with the tag.getAttribute(String name) Get an element attribute.getAttribute(String name, String dft) Get an element attribute.Get an array of element attributes.getPath()Get a tag as a string.getTag()Iterator over named child nodes.intsize()Get the number of children nodes.toString()toString(boolean tag) Convert to a string.toString(boolean tag, boolean trim) Convert to a string.Methods inherited from class AbstractList
add, addAll, equals, hashCode, indexOf, iterator, lastIndexOf, listIterator, listIterator, remove, removeRange, set, subListMethods inherited from class AbstractCollection
addAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArrayMethods inherited from interface Collection
parallelStream, removeIf, stream, toArrayMethods inherited from interface List
addAll, addFirst, addLast, contains, containsAll, getFirst, getLast, isEmpty, remove, removeAll, removeFirst, removeLast, replaceAll, retainAll, reversed, sort, spliterator, toArray, toArray 
- 
Method Details
- 
getParent
 - 
getTag
 - 
getPath
 - 
getAttributes
Get an array of element attributes.- Returns:
 - the attributes
 
 - 
getAttribute
 - 
getAttribute
 - 
size
public int size()Get the number of children nodes.- Specified by:
 sizein interfaceCollection<Object>- Specified by:
 sizein interfaceList<Object>- Specified by:
 sizein classAbstractCollection<Object>
 - 
get
 - 
get
Get the first child node with the tag.- Parameters:
 tag- the name of the tag- Returns:
 - Node or null.
 
 - 
add
 - 
clear
public void clear()- Specified by:
 clearin interfaceCollection<Object>- Specified by:
 clearin interfaceList<Object>- Overrides:
 clearin classAbstractList<Object>
 - 
getString
 - 
toString
- Overrides:
 toStringin classAbstractCollection<Object>
 - 
toString
Convert to a string.- Parameters:
 tag- If false, only _content is shown.- Returns:
 - the string value
 
 - 
toString
Convert to a string.- Parameters:
 tag- If false, only _content is shown.trim- true to trim the content- Returns:
 - the trimmed content
 
 - 
iterator
Iterator over named child nodes.- Parameters:
 tag- The tag of the nodes.- Returns:
 - Iterator over all child nodes with the specified tag.
 
 
 -