Serialized Form


Package javanet.staxutils.error

Class javanet.staxutils.error.IllegalStreamStateException extends java.lang.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

java.lang.String data
Character content.

Class javanet.staxutils.events.AbstractXMLEvent extends java.lang.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

java.lang.String value
The normalized attribute value.


dtdType

java.lang.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

java.lang.String text
Comment text.

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

Serialized Fields

declaration

java.lang.String declaration
The full DTD declaration.


entities

java.util.List entities
The list of EntityDeclarations.


notations

java.util.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

java.util.Collection namespaces
A collection of Namespaces going out of scope.

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

Serialized Fields

name

java.lang.String name
The entity name.


replacementText

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


baseURI

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


publicId

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


systemId

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


notationName

java.lang.String notationName
The optional notation name.

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

Serialized Fields

name

java.lang.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

java.lang.String name
The notation name.


publicId

java.lang.String publicId
The public id of the notation


systemId

java.lang.String systemId
The system id of the notation

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

Serialized Fields

target

java.lang.String target
The PI target.


data

java.lang.String data
The instruction data.

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

Serialized Fields

encoding

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


standalone

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


version

java.lang.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

java.util.Map attributes
The element attributes.


namespaces

java.util.Map namespaces
The element namespaces.


namespaceCtx

NamespaceContext namespaceCtx
The namespace context.