public interface StartElement extends XMLEvent
ATTRIBUTE, CDATA, CHARACTERS, COMMENT, DTD, END_DOCUMENT, END_ELEMENT, ENTITY_DECLARATION, ENTITY_REFERENCE, NAMESPACE, NOTATION_DECLARATION, PROCESSING_INSTRUCTION, SPACE, START_DOCUMENT, START_ELEMENT
Modifier and Type | Method and Description |
---|---|
Attribute |
getAttributeByName(QName name)
返回此名称引用的属性
|
Iterator |
getAttributes()
返回在此START_ELEMENT上声明的非命名空间声明属性的迭代器,如果没有属性,则返回空的迭代器。
|
QName |
getName()
获取此事件的名称
|
NamespaceContext |
getNamespaceContext()
获取只读命名空间上下文。
|
Iterator |
getNamespaces()
返回在此元素上声明的命名空间的迭代器。
|
String |
getNamespaceURI(String prefix)
在该元素的上下文中获取前缀所绑定的值。
|
asCharacters, asEndElement, asStartElement, getEventType, getLocation, getSchemaType, isAttribute, isCharacters, isEndDocument, isEndElement, isEntityReference, isNamespace, isProcessingInstruction, isStartDocument, isStartElement, writeAsEncodedUnicode
QName getName()
Iterator getAttributes()
Iterator getNamespaces()
迭代器必须只包含javax.xml.stream.Namespace接口的实现。
命名空间是A属性。 可以将名称空间列表作为属性列表进行迭代。 但是,此方法仅返回在此START_ELEMENT上声明的命名空间列表,但不包括在此START_ELEMENT上声明的属性。 如果没有命名空间,则返回一个空的迭代器。
Attribute getAttributeByName(QName name)
name
- 所需名称的qname
NamespaceContext getNamespaceContext()
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.