Interface StartDocument
- All Superinterfaces:
XMLEvent, XMLStreamConstants
An interface for the start document event
- Since:
- 1.6
-
Field Summary
Fields declared in interface XMLStreamConstants
ATTRIBUTE, CDATA, CHARACTERS, COMMENT, DTD, END_DOCUMENT, END_ELEMENT, ENTITY_DECLARATION, ENTITY_REFERENCE, NAMESPACE, NOTATION_DECLARATION, PROCESSING_INSTRUCTION, SPACE, START_DOCUMENT, START_ELEMENTModifier and TypeFieldDescriptionstatic final intIndicates an event is an attributestatic final intIndicates an event is a CDATA sectionstatic final intIndicates an event is charactersstatic final intIndicates an event is a commentstatic final intIndicates an event is a DTDstatic final intIndicates an event is an end documentstatic final intIndicates an event is an end elementstatic final intIndicates a Entity Declarationstatic final intIndicates an event is an entity referencestatic final intIndicates the event is a namespace declarationstatic final intIndicates a Notationstatic final intIndicates an event is a processing instructionstatic final intThe characters are white space (see [XML], 2.10 "White Space Handling").static final intIndicates an event is a start documentstatic final intIndicates an event is a start element -
Method Summary
Modifier and TypeMethodDescriptionbooleanReturns true if CharacterEncodingScheme is set in the encoding declaration of the documentReturns the encoding style of the XML dataReturns the system ID of the XML dataReturns the version of XML of this XML streambooleanReturns if this XML is standalonebooleanReturns true if the standalone attribute is set in the encoding declaration of the document.Methods declared in interface XMLEvent
asCharacters, asEndElement, asStartElement, getEventType, getLocation, getSchemaType, isAttribute, isCharacters, isEndDocument, isEndElement, isEntityReference, isNamespace, isProcessingInstruction, isStartDocument, isStartElement, writeAsEncodedUnicodeModifier and TypeMethodDescriptionReturns this event as Characters, may result in a class cast exception if this event is not Characters.Returns this event as an end element event, may result in a class cast exception if this event is not a end element.Returns this event as a start element event, may result in a class cast exception if this event is not a start element.intReturns an integer code for this event.Return the location of this event.This method is provided for implementations to provide optional type information about the associated event.booleanA utility function to check if this event is an Attribute.booleanA utility function to check if this event is Characters.booleanA utility function to check if this event is an EndDocument.booleanA utility function to check if this event is a EndElement.booleanA utility function to check if this event is an EntityReference.booleanA utility function to check if this event is a Namespace.booleanA utility function to check if this event is a ProcessingInstruction.booleanA utility function to check if this event is a StartDocument.booleanA utility function to check if this event is a StartElement.voidwriteAsEncodedUnicode(Writer writer) This method will write the XMLEvent as per the XML 1.0 specification as Unicode characters.
-
Method Details
-
getSystemId
-
getCharacterEncodingScheme
String getCharacterEncodingScheme()Returns the encoding style of the XML data- Returns:
- the character encoding, defaults to "UTF-8"
-
encodingSet
boolean encodingSet()Returns true if CharacterEncodingScheme is set in the encoding declaration of the document- Returns:
- true if
CharacterEncodingSchemeis set, false otherwise
-
isStandalone
boolean isStandalone()Returns if this XML is standalone- Returns:
- the standalone state of XML, defaults to "no"
-
standaloneSet
boolean standaloneSet()Returns true if the standalone attribute is set in the encoding declaration of the document.- Returns:
- true if the standalone attribute is set, false otherwise
-
getVersion
String getVersion()Returns the version of XML of this XML stream- Returns:
- the version of XML, defaults to "1.0"
-