Module  java.xml
软件包  org.w3c.dom

Interface NameList



  • public interface NameList
    NameList接口提供了并行对名称和命名空间值(可以是空值)的抽象,而不定义或约束如何实现此集合。 NameList中的项目可以通过整数索引访问,从0开始。

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

    从以下版本开始:
    1.5,DOM 3级
    • 方法摘要

      所有方法  接口方法  抽象方法 
      Modifier and Type 方法 描述
      boolean contains​(String str)
      测试一个名字是否是这个 NameList一部分。
      boolean containsNS​(String namespaceURI, String name)
      测试如果对namespaceURI / name是这个 NameList一部分。
      int getLength​()
      列表中的对数(name和namespaceURI)。
      String getName​(int index)
      返回集合中的 index th名称项。
      String getNamespaceURI​(int index)
      返回集合中的 index th namespaceURI项目。
    • 方法详细信息

      • getName

        String getName​(int index)
        返回集合中的 index th名称项。
        参数
        index - 索引到集合。
        结果
        名称在 index位置在 NameList ,或 null如果没有指定索引的名称或索引超出范围。
      • getNamespaceURI

        String getNamespaceURI​(int index)
        返回集合中的 index th namespaceURI项目。
        参数
        index - 索引到集合。
        结果
        index中的 NameList位置的命名空间URI,如果没有指定索引的名称或索引超出范围, null
      • getLength

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

        boolean contains​(String str)
        测试一个名字是否是这个 NameList一部分。
        参数
        str - 要查找的名称。
        结果
        true如果已经找到该名称, false另有 false
      • containsNS

        boolean containsNS​(String namespaceURI,
                           String name)
        测试对象namespaceURI / name是否为 NameList一部分。
        参数
        namespaceURI - 要查找的命名空间URI。
        name - 要查找的名称。
        结果
        true如果已经找到对namespaceURI / name,否则为 false