Package org.apache.xmlbeans.xml.stream
Interface StartElement
- All Superinterfaces:
XMLEvent
The StartElement interface provides access to information about
start elements
- Since:
- Weblogic XML Input Stream 1.0
- See Also:
-
Field Summary
Fields inherited from interface org.apache.xmlbeans.xml.stream.XMLEvent
CHANGE_PREFIX_MAPPING, CHARACTER_DATA, COMMENT, END_DOCUMENT, END_ELEMENT, END_PREFIX_MAPPING, ENTITY_REFERENCE, NULL_ELEMENT, PROCESSING_INSTRUCTION, SPACE, START_DOCUMENT, START_ELEMENT, START_PREFIX_MAPPING, XML_EVENT
-
Method Summary
Modifier and TypeMethodDescriptiongetAttributeByName
(XMLName name) Returns the attribute referred to by this nameReturns an AttributeIterator of non-namespace declared attributesReturns the union of declared attributes and namespacesGets a java.util.Map from prefixes to URIs in scope for this element.Returns an AttributeIterator of namespaces declared in this elementgetNamespaceUri
(String prefix) Gets the value that the prefix is bound to in the context of this element.Methods inherited from interface org.apache.xmlbeans.xml.stream.XMLEvent
getLocation, getName, getSchemaType, getType, getTypeAsString, hasName, isChangePrefixMapping, isCharacterData, isEndDocument, isEndElement, isEndPrefixMapping, isEntityReference, isNull, isProcessingInstruction, isSpace, isStartDocument, isStartElement, isStartPrefixMapping
-
Method Details
-
getAttributes
AttributeIterator getAttributes()Returns an AttributeIterator of non-namespace declared attributes -
getNamespaces
AttributeIterator getNamespaces()Returns an AttributeIterator of namespaces declared in this element -
getAttributesAndNamespaces
AttributeIterator getAttributesAndNamespaces()Returns the union of declared attributes and namespaces -
getAttributeByName
Returns the attribute referred to by this name -
getNamespaceUri
Gets the value that the prefix is bound to in the context of this element. Returns null if the prefix is not bound in this context -
getNamespaceMap
Gets a java.util.Map from prefixes to URIs in scope for this element.
-