| 
 | Streaming API for XML (JSR 173) Version 1.0 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
The StartElement interface provides access to information about start elements. A StartElement is reported for each Start Tag in the document.
| Field Summary | 
| Fields inherited from interface javax.xml.stream.XMLStreamConstants | 
| ATTRIBUTE, CDATA, CHARACTERS, COMMENT, DTD, END_DOCUMENT, END_ELEMENT, ENTITY_DECLARATION, ENTITY_REFERENCE, NAMESPACE, NOTATION_DECLARATION, PROCESSING_INSTRUCTION, SPACE, START_DOCUMENT, START_ELEMENT | 
| Method Summary | |
|  Attribute | getAttributeByName(javax.xml.namespace.QName name)Returns the attribute referred to by this name | 
|  Iterator | getAttributes()Returns an Iterator of non-namespace declared attributes declared on this START_ELEMENT, returns an empty iterator if there are no attributes. | 
|  javax.xml.namespace.QName | getName()Get the name of this event | 
|  javax.xml.namespace.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. | 
| Methods inherited from interface javax.xml.stream.events.XMLEvent | 
| asCharacters, asEndElement, asStartElement, getEventType, getLocation, getSchemaType, isAttribute, isCharacters, isEndDocument, isEndElement, isEntityReference, isNamespace, isProcessingInstruction, isStartDocument, isStartElement, writeAsEncodedUnicode | 
| Method Detail | 
public javax.xml.namespace.QName getName()
public Iterator getAttributes()
public Iterator getNamespaces()
The iterator must contain only implementations of the javax.xml.stream.Namespace interface.
A Namespace isA 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. Returns an empty iterator if there are no namespaces.
public Attribute getAttributeByName(javax.xml.namespace.QName name)
name - the qname of the desired name
public javax.xml.namespace.NamespaceContext getNamespaceContext()
public String getNamespaceURI(String prefix)
prefix - the prefix to lookup
| 
 | Streaming API for XML (JSR 173) Version 1.0 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||