模块  java.xml
软件包  org.w3c.dom

Interface DOMStringList


  • public interface DOMStringList
    DOMStringList接口提供DOMString值的有序集合的抽象,而不定义或约束此集合的实现方式。 DOMStringList中的项目可通过整数索引访问,从0开始。

    另见Document Object Model (DOM) Level 3 Core Specification

    从以下版本开始:
    1.5,DOM Level 3
    • 方法详细信息

      • item

        String item​(int index)
        返回集合中的index项。 如果index大于或等于列表中的DOMString s数,则返回null
        参数
        index - 索引到集合中。
        结果
        所述 DOMStringindex在个位置 DOMStringList ,或 null如果不是有效的索引。
      • getLength

        int getLength()
        列表中的DOMString s的数量。 有效子节点索引的范围是0到length-1含)。
      • contains

        boolean contains​(String str)
        测试字符串是否为此 DOMStringList一部分。
        参数
        str - 要查找的字符串。
        结果
        true如果找到该字符串, false