XMLStreamConstants
Attribute
, Characters
, Comment
, DTD
, EndDocument
, EndElement
, EntityDeclaration
, EntityReference
, Namespace
, NotationDeclaration
, ProcessingInstruction
, StartDocument
, StartElement
public interface XMLEvent extends 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 Type | Method | Description |
---|---|---|
Characters |
asCharacters() |
Returns this event as Characters, may result in a class cast exception if this event is not Characters. |
EndElement |
asEndElement() |
Returns this event as an end element event, may result in a class cast exception if this event is not a end element. |
StartElement |
asStartElement() |
Returns this event as a start element event, may result in a class cast exception if this event is not a start element. |
int |
getEventType() |
Returns an integer code for this event. |
Location |
getLocation() |
Return the location of this event. |
QName |
getSchemaType() |
This method is provided for implementations to provide optional type information about the associated event. |
boolean |
isAttribute() |
A utility function to check if this event is an Attribute. |
boolean |
isCharacters() |
A utility function to check if this event is Characters. |
boolean |
isEndDocument() |
A utility function to check if this event is an EndDocument. |
boolean |
isEndElement() |
A utility function to check if this event is a EndElement. |
boolean |
isEntityReference() |
A utility function to check if this event is an EntityReference. |
boolean |
isNamespace() |
A utility function to check if this event is a Namespace. |
boolean |
isProcessingInstruction() |
A utility function to check if this event is a ProcessingInstruction. |
boolean |
isStartDocument() |
A utility function to check if this event is a StartDocument. |
boolean |
isStartElement() |
A utility function to check if this event is a StartElement. |
void |
writeAsEncodedUnicode |
This method will write the XMLEvent as per the XML 1.0 specification as Unicode characters. |
int getEventType()
Location getLocation()
boolean isStartElement()
StartElement
, false otherwiseboolean isAttribute()
Attribute
, false otherwiseboolean isNamespace()
Namespace
, false otherwiseboolean isEndElement()
EndElement
, false otherwiseboolean isEntityReference()
EntityReference
, false otherwiseboolean isProcessingInstruction()
ProcessingInstruction
, false otherwiseboolean isCharacters()
Characters
, false otherwiseboolean isStartDocument()
StartDocument
, false otherwiseboolean isEndDocument()
EndDocument
, false otherwiseStartElement asStartElement()
StartElement
eventEndElement asEndElement()
EndElement
eventCharacters asCharacters()
Characters
eventQName getSchemaType()
void writeAsEncodedUnicode(Writer writer) throws XMLStreamException
writer
- The writer that will output the dataXMLStreamException
- if there is a fatal error writing the event
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.xml/javax/xml/stream/events/XMLEvent.html