Interface Characters
- All Superinterfaces:
XMLEvent, XMLStreamConstants
This describes the interface to Characters events.
All text events get reported as Characters events.
Content, CData and whitespace are all reported as
Characters events. IgnorableWhitespace, in most cases,
will be set to false unless an element declaration of element
content is present for the current element.
- 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_ELEMENT
Modifier and TypeFieldDescriptionstatic final int
Indicates an event is an attributestatic final int
Indicates an event is a CDATA sectionstatic final int
Indicates an event is charactersstatic final int
Indicates an event is a commentstatic final int
Indicates an event is a DTDstatic final int
Indicates an event is an end documentstatic final int
Indicates an event is an end elementstatic final int
Indicates a Entity Declarationstatic final int
Indicates an event is an entity referencestatic final int
Indicates the event is a namespace declarationstatic final int
Indicates a Notationstatic final int
Indicates an event is a processing instructionstatic final int
The characters are white space (see [XML], 2.10 "White Space Handling").static final int
Indicates an event is a start documentstatic final int
Indicates an event is a start element -
Method Summary
Methods declared in interface XMLEvent
asCharacters, asEndElement, asStartElement, getEventType, getLocation, getSchemaType, isAttribute, isCharacters, isEndDocument, isEndElement, isEntityReference, isNamespace, isProcessingInstruction, isStartDocument, isStartElement, writeAsEncodedUnicode
Modifier 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.int
Returns 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.boolean
A utility function to check if this event is an Attribute.boolean
A utility function to check if this event is Characters.boolean
A utility function to check if this event is an EndDocument.boolean
A utility function to check if this event is a EndElement.boolean
A utility function to check if this event is an EntityReference.boolean
A utility function to check if this event is a Namespace.boolean
A utility function to check if this event is a ProcessingInstruction.boolean
A utility function to check if this event is a StartDocument.boolean
A utility function to check if this event is a StartElement.void
writeAsEncodedUnicode
(Writer writer) This method will write the XMLEvent as per the XML 1.0 specification as Unicode characters.
-
Method Details
-
getData
-
isWhiteSpace
boolean isWhiteSpace()Returns true if this set of Characters is all whitespace. Whitespace inside a document is reported as CHARACTERS. This method allows checking of CHARACTERS events to see if they are composed of only whitespace characters- Returns:
- true if the
Characters
are all whitespace, false otherwise
-
isCData
boolean isCData()Returns true if this is a CData section. If this event is CData its event type will be CDATA If javax.xml.stream.isCoalescing is set to true CDATA Sections that are surrounded by non CDATA characters will be reported as a single Characters event. This method will return false in this case.- Returns:
- true if it is
CDATA
, false otherwise
-
isIgnorableWhiteSpace
boolean isIgnorableWhiteSpace()Return true if this is ignorableWhiteSpace. If this event is ignorableWhiteSpace its event type will be SPACE.- Returns:
- true if it is ignorable whitespace, false otherwise
-