Class DOMNodeList

  • All Implemented Interfaces:
    org.w3c.dom.NodeList

    public final class DOMNodeList
    extends java.lang.Object
    implements org.w3c.dom.NodeList
    This class wraps a list of nodes as a DOM NodeList
    • Constructor Summary

      Constructors 
      Constructor Description
      DOMNodeList​(java.util.List<org.w3c.dom.Node> extent)
      Construct an node list that wraps a supplied list of DOM Nodes.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int getLength()
      return the number of nodes in the list (DOM method)
      org.w3c.dom.Node item​(int index)
      Return the n'th item in the list (DOM method)
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • DOMNodeList

        public DOMNodeList​(java.util.List<org.w3c.dom.Node> extent)
        Construct an node list that wraps a supplied list of DOM Nodes.
        Parameters:
        extent - the list of nodes to be wrapped
    • Method Detail

      • getLength

        public int getLength()
        return the number of nodes in the list (DOM method)
        Specified by:
        getLength in interface org.w3c.dom.NodeList
      • item

        public org.w3c.dom.Node item​(int index)
        Return the n'th item in the list (DOM method)
        Specified by:
        item in interface org.w3c.dom.NodeList
        Throws:
        java.lang.ClassCastException - if the item is not a DOM Node