Serialized Form


Package javanet.staxutils.error

Class javanet.staxutils.error.IllegalStreamStateException extends IllegalStateException implements Serializable

Serialized Fields

location

Location location
The location in the stream where the error occured.


Package javanet.staxutils.events

Class javanet.staxutils.events.AbstractCharactersEvent extends AbstractXMLEvent implements Serializable

Serialized Fields

data

String data
Character content.

Class javanet.staxutils.events.AbstractXMLEvent extends Object implements Serializable

Serialized Fields

location

Location location
The event location.


schemaType

QName schemaType
The schema type.

Class javanet.staxutils.events.AttributeEvent extends AbstractXMLEvent implements Serializable

Serialized Fields

specified

boolean specified
Whether the attribute was specified in the document. Defaults to true.


name

QName name
The qualified attribute name.


value

String value
The normalized attribute value.


dtdType

String dtdType
Type of attribute as specified in the DTD. Defaults to CDATA.

Class javanet.staxutils.events.CDataEvent extends AbstractCharactersEvent implements Serializable

Class javanet.staxutils.events.CharactersEvent extends AbstractCharactersEvent implements Serializable

Class javanet.staxutils.events.CommentEvent extends AbstractXMLEvent implements Serializable

Serialized Fields

text

String text
Comment text.

Class javanet.staxutils.events.DTDEvent extends AbstractXMLEvent implements Serializable

Serialized Fields

declaration

String declaration
The full DTD declaration.


entities

List entities
The list of EntityDeclarations.


notations

List notations
The list of NotationDeclarations.

Class javanet.staxutils.events.EndDocumentEvent extends AbstractXMLEvent implements Serializable

Class javanet.staxutils.events.EndElementEvent extends AbstractXMLEvent implements Serializable

Serialized Fields

name

QName name
The element name.


namespaces

Collection namespaces
A collection of Namespaces going out of scope.

Class javanet.staxutils.events.EntityDeclarationEvent extends AbstractXMLEvent implements Serializable

Serialized Fields

name

String name
The entity name.


replacementText

String replacementText
The replacement text, or null if this isn't an internal entity.


baseURI

String baseURI
The entity base URI, or null if this isn't an external entity


publicId

String publicId
The public id, or null if this isn't an external entity


systemId

String systemId
The system id, or null if this isn't an external entity.


notationName

String notationName
The optional notation name.

Class javanet.staxutils.events.EntityReferenceEvent extends AbstractXMLEvent implements Serializable

Serialized Fields

name

String name
The referenced entity name.


declaration

EntityDeclaration declaration
The referenced entity declaration.

Class javanet.staxutils.events.IgnorableSpaceEvent extends AbstractCharactersEvent implements Serializable

Class javanet.staxutils.events.NamespaceEvent extends AttributeEvent implements Serializable

Class javanet.staxutils.events.NotationDeclarationEvent extends AbstractXMLEvent implements Serializable

Serialized Fields

name

String name
The notation name.


publicId

String publicId
The public id of the notation


systemId

String systemId
The system id of the notation

Class javanet.staxutils.events.ProcessingInstructionEvent extends AbstractXMLEvent implements Serializable

Serialized Fields

target

String target
The PI target.


data

String data
The instruction data.

Class javanet.staxutils.events.StartDocumentEvent extends AbstractXMLEvent implements Serializable

Serialized Fields

encoding

String encoding
The document encoding, or null if none was specified.


standalone

Boolean standalone
The document standalone value, or null if none was specified.


version

String version
The XML version, or null if none was specified.

Class javanet.staxutils.events.StartElementEvent extends AbstractXMLEvent implements Serializable

Serialized Fields

name

QName name
The qualified element name.


attributes

Map attributes
The element attributes.


namespaces

Map namespaces
The element namespaces.


namespaceCtx

NamespaceContext namespaceCtx
The namespace context.