Uses of Interface
javax.xml.stream.events.Attribute
-
Packages that use Attribute 软件包 描述 javax.xml.stream 定义Streaming API for XML(StAX)的接口和类。javax.xml.stream.events 定义Streaming API for XML(StAX)的事件接口。 -
-
Uses of Attribute in javax.xml.stream
Methods in javax.xml.stream that return Attribute Modifier and Type 方法 描述 abstract Attribute
XMLEventFactory. createAttribute(String localName, String value)
创建一个新的属性abstract Attribute
XMLEventFactory. createAttribute(String prefix, String namespaceURI, String localName, String value)
创建一个新的属性abstract Attribute
XMLEventFactory. createAttribute(QName name, String value)
创建一个新的属性Method parameters in javax.xml.stream with type arguments of type Attribute Modifier and Type 方法 描述 abstract StartElement
XMLEventFactory. createStartElement(String prefix, String namespaceUri, String localName, Iterator<? extends Attribute> attributes, Iterator<? extends Namespace> namespaces)
创建一个新的StartElement。abstract StartElement
XMLEventFactory. createStartElement(String prefix, String namespaceUri, String localName, Iterator<? extends Attribute> attributes, Iterator<? extends Namespace> namespaces, NamespaceContext context)
创建一个新的StartElement。abstract StartElement
XMLEventFactory. createStartElement(QName name, Iterator<? extends Attribute> attributes, Iterator<? extends Namespace> namespaces)
创建一个新的StartElement。 -
Uses of Attribute in javax.xml.stream.events
Subinterfaces of Attribute in javax.xml.stream.events Modifier and Type 接口 描述 interface
Namespace
包含名称空间信息的界面。Methods in javax.xml.stream.events that return Attribute Modifier and Type 方法 描述 Attribute
StartElement. getAttributeByName(QName name)
返回此名称引用的属性Methods in javax.xml.stream.events that return types with arguments of type Attribute Modifier and Type 方法 描述 Iterator<Attribute>
StartElement. getAttributes()
返回在此START_ELEMENT上声明的非命名空间声明属性的迭代器,如果没有属性,则返回空的迭代器。
-