Module  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 3级
    • 方法摘要

      所有方法  接口方法  抽象方法 
      Modifier and Type 方法 描述
      boolean contains​(String str)
      测试一个字符串是否是这个 DOMStringList一部分。
      int getLength​()
      列表中的 DOMString的数量。
      String item​(int index)
      返回集合中的 index项。
    • 方法详细信息

      • item

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

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

        boolean contains​(String str)
        测试一个字符串是否是这个 DOMStringList一部分。
        参数
        str - 要查找的字符串。
        结果
        true如果字符串已经被发现,否则为 false