Package javanet.staxutils.events
Class StartDocumentEvent
- java.lang.Object
-
- javanet.staxutils.events.AbstractXMLEvent
-
- javanet.staxutils.events.StartDocumentEvent
-
- All Implemented Interfaces:
Serializable,Cloneable,ExtendedXMLEvent,StartDocument,XMLEvent,XMLStreamConstants
public class StartDocumentEvent extends AbstractXMLEvent implements StartDocument
StartDocumentimplementation.- Version:
- $Revision: 1.2 $
- Author:
- Christian Niles
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_ENCODINGDefault encoding returned bygetCharacterEncodingScheme().static StringDEFAULT_SYSTEM_IDDefault system id returned bygetSystemId().static StringDEFAULT_VERSIONDefault XML version returned bygetVersion().protected StringencodingThe document encoding, ornullif none was specified.protected BooleanstandaloneThe document standalone value, ornullif none was specified.protected StringversionThe XML version, ornullif none was specified.-
Fields inherited from class javanet.staxutils.events.AbstractXMLEvent
location, schemaType
-
Fields inherited from interface javax.xml.stream.XMLStreamConstants
ATTRIBUTE, CDATA, CHARACTERS, COMMENT, DTD, END_DOCUMENT, END_ELEMENT, ENTITY_DECLARATION, ENTITY_REFERENCE, NAMESPACE, NOTATION_DECLARATION, PROCESSING_INSTRUCTION, SPACE, START_DOCUMENT, START_ELEMENT
-
-
Constructor Summary
Constructors Constructor Description StartDocumentEvent()StartDocumentEvent(String encoding, Boolean standalone, String version, Location location)StartDocumentEvent(String encoding, Boolean standalone, String version, Location location, QName schemaType)StartDocumentEvent(String encoding, Location location)StartDocumentEvent(StartDocument that)Copy constructor.StartDocumentEvent(Location location)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanencodingSet()StringgetCharacterEncodingScheme()intgetEventType()ReturnsXMLStreamConstants.START_DOCUMENT.StringgetSystemId()StringgetVersion()booleanisStandalone()booleanstandaloneSet()-
Methods inherited from class javanet.staxutils.events.AbstractXMLEvent
asCharacters, asEndElement, asStartElement, clone, getLocation, getSchemaType, isAttribute, isCharacters, isEndDocument, isEndElement, isEntityReference, isNamespace, isProcessingInstruction, isStartDocument, isStartElement, matches, toString, writeAsEncodedUnicode, writeEvent
-
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface javax.xml.stream.events.XMLEvent
asCharacters, asEndElement, asStartElement, getLocation, getSchemaType, isAttribute, isCharacters, isEndDocument, isEndElement, isEntityReference, isNamespace, isProcessingInstruction, isStartDocument, isStartElement, writeAsEncodedUnicode
-
-
-
-
Field Detail
-
DEFAULT_VERSION
public static final String DEFAULT_VERSION
Default XML version returned bygetVersion().- See Also:
- Constant Field Values
-
DEFAULT_SYSTEM_ID
public static final String DEFAULT_SYSTEM_ID
Default system id returned bygetSystemId().- See Also:
- Constant Field Values
-
DEFAULT_ENCODING
public static final String DEFAULT_ENCODING
Default encoding returned bygetCharacterEncodingScheme().- See Also:
- Constant Field Values
-
encoding
protected String encoding
The document encoding, ornullif none was specified.
-
standalone
protected Boolean standalone
The document standalone value, ornullif none was specified.
-
version
protected String version
The XML version, ornullif none was specified.
-
-
Constructor Detail
-
StartDocumentEvent
public StartDocumentEvent()
-
StartDocumentEvent
public StartDocumentEvent(Location location)
-
StartDocumentEvent
public StartDocumentEvent(String encoding, Boolean standalone, String version, Location location)
-
StartDocumentEvent
public StartDocumentEvent(String encoding, Boolean standalone, String version, Location location, QName schemaType)
-
StartDocumentEvent
public StartDocumentEvent(StartDocument that)
Copy constructor.- Parameters:
that- TheStartDocumentevent to copy.
-
-
Method Detail
-
getEventType
public int getEventType()
ReturnsXMLStreamConstants.START_DOCUMENT.- Specified by:
getEventTypein interfaceXMLEvent
-
encodingSet
public boolean encodingSet()
- Specified by:
encodingSetin interfaceStartDocument
-
getCharacterEncodingScheme
public String getCharacterEncodingScheme()
- Specified by:
getCharacterEncodingSchemein interfaceStartDocument
-
getSystemId
public String getSystemId()
- Specified by:
getSystemIdin interfaceStartDocument
-
getVersion
public String getVersion()
- Specified by:
getVersionin interfaceStartDocument
-
isStandalone
public boolean isStandalone()
- Specified by:
isStandalonein interfaceStartDocument
-
standaloneSet
public boolean standaloneSet()
- Specified by:
standaloneSetin interfaceStartDocument
-
-