public class StartElementEvent extends EventBase implements javax.xml.stream.events.StartElement
_eventType, _location
ATTRIBUTE, CDATA, CHARACTERS, COMMENT, DTD, END_DOCUMENT, END_ELEMENT, ENTITY_DECLARATION, ENTITY_REFERENCE, NAMESPACE, NOTATION_DECLARATION, PROCESSING_INSTRUCTION, SPACE, START_DOCUMENT, START_ELEMENT
Constructor and Description |
---|
StartElementEvent() |
StartElementEvent(QName qname) |
StartElementEvent(javax.xml.stream.events.StartElement startelement) |
StartElementEvent(String prefix,
String uri,
String localpart) |
Modifier and Type | Method and Description |
---|---|
void |
addAttribute(javax.xml.stream.events.Attribute attr) |
void |
addAttributes(Iterator attrs) |
void |
addNamespace(javax.xml.stream.events.Namespace namespace) |
void |
addNamespaces(Iterator namespaces) |
javax.xml.stream.events.Attribute |
getAttributeByName(QName qname)
Returns the attribute referred to by this name
|
Iterator |
getAttributes()
Returns an Iterator of non-namespace declared attributes
returns an empty iterator if there are no attributes.
|
QName |
getName()
Get the name of this event
|
String |
getNamespace() |
NamespaceContext |
getNamespaceContext()
Gets a read-only namespace context.
|
Iterator |
getNamespaces()
Returns an Iterator of namespaces declared on this element.
|
String |
getNamespaceURI(String prefix)
Gets the value that the prefix is bound to in the
context of this element.
|
protected void |
init() |
String |
nameAsString()
Return this event as String
|
void |
reset() |
void |
setName(QName qname) |
void |
setNamespaceContext(NamespaceContext context) |
String |
toString() |
asCharacters, asEndElement, asStartElement, getEventType, getLocation, getSchemaType, getSystemId, isAttribute, isCharacters, isEndDocument, isEndElement, isEntityReference, isNamespace, isProcessingInstruction, isStartDocument, isStartElement, setEventType, setLocation, writeAsEncodedUnicode
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
asCharacters, asEndElement, asStartElement, getEventType, getLocation, getSchemaType, isAttribute, isCharacters, isEndDocument, isEndElement, isEntityReference, isNamespace, isProcessingInstruction, isStartDocument, isStartElement, writeAsEncodedUnicode
public StartElementEvent()
public StartElementEvent(QName qname)
public StartElementEvent(javax.xml.stream.events.StartElement startelement)
public void reset()
protected void init()
public QName getName()
getName
in interface javax.xml.stream.events.StartElement
public Iterator getAttributes()
getAttributes
in interface javax.xml.stream.events.StartElement
public Iterator getNamespaces()
The iterator must contain only implementations of the javax.xml.stream.Namespace interface.
A Namespace is an Attribute. One can iterate over a list of namespaces as a list of attributes. However this method returns only the list of namespaces declared on this START_ELEMENT and does not include the attributes declared on this START_ELEMENT.
getNamespaces
in interface javax.xml.stream.events.StartElement
public javax.xml.stream.events.Attribute getAttributeByName(QName qname)
getAttributeByName
in interface javax.xml.stream.events.StartElement
qname
- the qname of the desired namepublic NamespaceContext getNamespaceContext()
getNamespaceContext
in interface javax.xml.stream.events.StartElement
public void setName(QName qname)
public String getNamespace()
public String getNamespaceURI(String prefix)
getNamespaceURI
in interface javax.xml.stream.events.StartElement
prefix
- the prefix to lookuppublic String nameAsString()
public void setNamespaceContext(NamespaceContext context)
public void addAttribute(javax.xml.stream.events.Attribute attr)
public void addAttributes(Iterator attrs)
public void addNamespace(javax.xml.stream.events.Namespace namespace)
public void addNamespaces(Iterator namespaces)
Copyright © 2014 Oracle Corpration. All Rights Reserved.