Interface StartElement
- All Superinterfaces:
XMLEvent, XMLStreamConstants
The StartElement interface provides access to information about
start elements. A StartElement is reported for each Start Tag
in the document.
- Since:
- 1.6
-
Field Summary
Fields declared in interface XMLStreamConstants
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 TypeFieldDescriptionstatic final int
Indicates an event is an attributestatic final int
Indicates an event is a CDATA sectionstatic final int
Indicates an event is charactersstatic final int
Indicates an event is a commentstatic final int
Indicates an event is a DTDstatic final int
Indicates an event is an end documentstatic final int
Indicates an event is an end elementstatic final int
Indicates a Entity Declarationstatic final int
Indicates an event is an entity referencestatic final int
Indicates the event is a namespace declarationstatic final int
Indicates a Notationstatic final int
Indicates an event is a processing instructionstatic final int
The characters are white space (see [XML], 2.10 "White Space Handling").static final int
Indicates an event is a start documentstatic final int
Indicates an event is a start element -
Method Summary
Modifier and TypeMethodDescriptiongetAttributeByName
(QName name) Returns the attribute referred to by the qname.Returns an Iterator of non-namespace attributes declared on this START_ELEMENT.getName()
Get the name of this eventGets a read-only namespace context.Returns an Iterator of namespaces declared on this element.getNamespaceURI
(String prefix) Gets the value that the prefix is bound to in the context of this element.Methods declared in interface XMLEvent
asCharacters, asEndElement, asStartElement, getEventType, getLocation, getSchemaType, isAttribute, isCharacters, isEndDocument, isEndElement, isEntityReference, isNamespace, isProcessingInstruction, isStartDocument, isStartElement, writeAsEncodedUnicode
Modifier and TypeMethodDescriptionReturns this event as Characters, may result in a class cast exception if this event is not Characters.Returns this event as an end element event, may result in a class cast exception if this event is not a end element.Returns this event as a start element event, may result in a class cast exception if this event is not a start element.int
Returns an integer code for this event.Return the location of this event.This method is provided for implementations to provide optional type information about the associated event.boolean
A utility function to check if this event is an Attribute.boolean
A utility function to check if this event is Characters.boolean
A utility function to check if this event is an EndDocument.boolean
A utility function to check if this event is a EndElement.boolean
A utility function to check if this event is an EntityReference.boolean
A utility function to check if this event is a Namespace.boolean
A utility function to check if this event is a ProcessingInstruction.boolean
A utility function to check if this event is a StartDocument.boolean
A utility function to check if this event is a StartElement.void
writeAsEncodedUnicode
(Writer writer) This method will write the XMLEvent as per the XML 1.0 specification as Unicode characters.
-
Method Details
-
getName
-
getAttributes
Returns an Iterator of non-namespace attributes declared on this START_ELEMENT. Returns an empty iterator if there are no attributes. The iterator must contain only implementations of theAttribute
interface. Attributes are fundamentally unordered and may be reported in any order.- Returns:
- a readonly Iterator over Attribute interfaces, or an empty iterator
-
getNamespaces
Returns an Iterator of namespaces declared on this element. This Iterator does not contain previously declared namespaces unless they appear on the current START_ELEMENT. Therefore this list may contain redeclared namespaces and duplicate namespace declarations. Use the getNamespaceContext() method to get the current context of namespace declarations.The iterator must contain only implementations of the
Namespace
interface.A
Namespace
is anAttribute
. 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.- Returns:
- a readonly Iterator over Namespace interfaces, or an empty iterator
-
getAttributeByName
-
getNamespaceContext
NamespaceContext getNamespaceContext()Gets a read-only namespace context. If no context is available this method will return an empty namespace context. The NamespaceContext contains information about all namespaces in scope for this StartElement.- Returns:
- the current namespace context
-
getNamespaceURI
-