|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use XMLStreamException | |
javax.xml.stream | This package provides the Streaming API for XML (StAX, or JSR 173) subset defined by JSR 280. |
Uses of XMLStreamException in javax.xml.stream |
Methods in javax.xml.stream that throw XMLStreamException | |
int |
DTDStreamReader.next()
Returns next DTD parsing event. |
boolean |
DTDStreamReader.hasNext()
Returns true if there are more parsing events and
false if there are no more events. |
void |
DTDStreamReader.close()
Terminates DTD processing, skipping all DTD related events up to END_DTD . |
void |
XMLStreamWriter.writeStartElement(String localName)
Writes a start tag to the output. |
void |
XMLStreamWriter.writeStartElement(String namespaceURI,
String localName)
Writes a start tag to the output |
void |
XMLStreamWriter.writeStartElement(String prefix,
String localName,
String namespaceURI)
Writes a start tag to the output |
void |
XMLStreamWriter.writeEmptyElement(String namespaceURI,
String localName)
Writes an empty element tag to the output |
void |
XMLStreamWriter.writeEmptyElement(String prefix,
String localName,
String namespaceURI)
Writes an empty element tag to the output |
void |
XMLStreamWriter.writeEmptyElement(String localName)
Writes an empty element tag to the output |
void |
XMLStreamWriter.writeEndElement()
Writes an end tag to the output relying on the internal state of the writer to determine the prefix and local name of the event. |
void |
XMLStreamWriter.writeEndDocument()
Closes any start tags and writes corresponding end tags. |
void |
XMLStreamWriter.close()
Close this writer and free any resources associated with the writer. |
void |
XMLStreamWriter.flush()
Write any cached data to the underlying output mechanism. |
void |
XMLStreamWriter.writeAttribute(String localName,
String value)
Writes an attribute to the output stream without a prefix. |
void |
XMLStreamWriter.writeAttribute(String prefix,
String namespaceURI,
String localName,
String value)
Writes an attribute to the output stream |
void |
XMLStreamWriter.writeAttribute(String namespaceURI,
String localName,
String value)
Writes an attribute to the output stream |
void |
XMLStreamWriter.writeNamespace(String prefix,
String namespaceURI)
Writes a namespace to the output stream If the prefix argument to this method is the empty string, "xmlns", or null this method will delegate to writeDefaultNamespace |
void |
XMLStreamWriter.writeDefaultNamespace(String namespaceURI)
Writes the default namespace to the stream |
void |
XMLStreamWriter.writeComment(String data)
Writes an xml comment with the data enclosed |
void |
XMLStreamWriter.writeProcessingInstruction(String target)
Writes a processing instruction |
void |
XMLStreamWriter.writeProcessingInstruction(String target,
String data)
Writes a processing instruction |
void |
XMLStreamWriter.writeCData(String data)
Writes a CData section |
void |
XMLStreamWriter.writeDTD(String dtd)
Write a DTD section. |
void |
XMLStreamWriter.writeEntityRef(String name)
Writes an entity reference |
void |
XMLStreamWriter.writeStartDocument()
Write the XML Declaration. |
void |
XMLStreamWriter.writeStartDocument(String version)
Write the XML Declaration. |
void |
XMLStreamWriter.writeStartDocument(String encoding,
String version)
Write the XML Declaration. |
void |
XMLStreamWriter.writeCharacters(String text)
Write text to the output |
void |
XMLStreamWriter.writeCharacters(char[] text,
int start,
int len)
Write text to the output |
String |
XMLStreamWriter.getPrefix(String uri)
Gets the prefix the uri is bound to |
void |
XMLStreamWriter.setPrefix(String prefix,
String uri)
Sets the prefix the uri is bound to. |
void |
XMLStreamWriter.setDefaultNamespace(String uri)
Binds a URI to the default namespace This URI is bound in the scope of the current START_ELEMENT / END_ELEMENT pair. |
abstract XMLStreamWriter |
XMLOutputFactory.createXMLStreamWriter(Writer stream)
Create a new XMLStreamWriter that writes to a writer |
abstract XMLStreamWriter |
XMLOutputFactory.createXMLStreamWriter(OutputStream stream)
Create a new XMLStreamWriter that writes to a stream |
abstract XMLStreamWriter |
XMLOutputFactory.createXMLStreamWriter(OutputStream stream,
String encoding)
Create a new XMLStreamWriter that writes to a stream |
Object |
XMLResolver.resolveEntity(String publicID,
String systemID,
String baseURI,
String namespace)
Retrieves a resource. |
int |
XMLStreamReader.next()
Get next parsing event - a processor may return all contiguous character data in a single chunk, or it may split it into several chunks. |
void |
XMLStreamReader.require(int type,
String namespaceURI,
String localName)
Test if the current event is of the given type and if the namespace and name match the current namespace and name of the current event. |
String |
XMLStreamReader.getElementText()
Reads the content of a text-only element, an exception is thrown if this is not a text-only element. |
int |
XMLStreamReader.nextTag()
Skips any white space (isWhiteSpace() returns true ), COMMENT,
or PROCESSING_INSTRUCTION,
until a START_ELEMENT or END_ELEMENT is reached. |
boolean |
XMLStreamReader.hasNext()
Returns true if there are more parsing events and
false if there are no more events. |
void |
XMLStreamReader.close()
Frees any resources associated with this Reader. |
abstract XMLStreamReader |
XMLInputFactory.createXMLStreamReader(Reader reader)
Create a new XMLStreamReader from a reader |
abstract XMLStreamReader |
XMLInputFactory.createXMLStreamReader(InputStream stream)
Create a new XMLStreamReader from a java.io.InputStream |
abstract XMLStreamReader |
XMLInputFactory.createXMLStreamReader(InputStream stream,
String encoding)
Create a new XMLStreamReader from a java.io.InputStream |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |