模块  java.desktop

Class Element

    • 字段详细信息

      • index

        public int index
        元素索引
      • name

        public String name
        元素的名称
      • oStart

        public boolean oStart
        true如果可以省略开始标记
      • oEnd

        public boolean oEnd
        true如果可以省略结束标记
      • inclusions

        public BitSet inclusions
        元素内部可以出现的元素集
      • exclusions

        public BitSet exclusions
        元素内部不得出现的元素集
      • type

        public int type
        元素类型
      • data

        public Object data
        用于存储用户数据的字段。 主要用于存储样式表。
    • 方法详细信息

      • getName

        public String getName()
        获取元素的名称。
        结果
        元素的名称
      • omitStart

        public boolean omitStart()
        如果可以省略开始标记,则返回true。
        结果
        true如果可以省略开始标记
      • omitEnd

        public boolean omitEnd()
        如果可以省略结束标记,则返回true。
        结果
        true如果可以省略结束标记
      • getType

        public int getType()
        获取类型。
        结果
        元素的类型
      • getContent

        public ContentModel getContent()
        获取内容模型
        结果
        内容模型
      • getAttributes

        public AttributeList getAttributes()
        获取属性。
        结果
        AttributeList指定了元素
      • getIndex

        public int getIndex()
        获取索引。
        结果
        元素索引
      • isEmpty

        public boolean isEmpty()
        检查是否为空
        结果
        如果当前元素为空,则返回true
      • toString

        public String toString()
        转换为字符串。
        重写:
        toString在类 Object
        结果
        给定 Element实例的字符串表示形式
      • getAttribute

        public AttributeList getAttribute​(String name)
        按名称获取属性。
        参数
        name - 属性名称
        结果
        AttributeList为给定的 name
      • getAttributeByValue

        public AttributeList getAttributeByValue​(String value)
        按值获取属性。
        参数
        value - 值的字符串表示形式
        结果
        AttributeList为给定的 value
      • name2type

        public static int name2type​(String nm)
        nm转换为类型。 如果nm等于CDATA,RCDATA,EMPTY或ANY,则返回适当的DTDConstants,否则返回0。
        参数
        nm - 名字
        结果
        如果 nm等于CDATA,RCDATA,EMPTY或ANY, nm适当的DTDConstants,否则为0。