|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjavax.xml.stream.XMLEventFactory
This interface defines a utility class for creating instances of XMLEvents
StartElement
,
EndElement
,
ProcessingInstruction
,
Comment
,
Characters
,
StartDocument
,
EndDocument
,
DTD
Constructor Summary | |
protected |
XMLEventFactory()
|
Method Summary | |
abstract Attribute |
createAttribute(QName name,
java.lang.String value)
Create a new Attribute |
abstract Attribute |
createAttribute(java.lang.String localName,
java.lang.String value)
Create a new Attribute |
abstract Attribute |
createAttribute(java.lang.String prefix,
java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String value)
Create a new Attribute |
abstract Characters |
createCData(java.lang.String content)
Create a Characters event with the CData flag set to true |
abstract Characters |
createCharacters(java.lang.String content)
Create a Characters event, this method does not check if the content is all whitespace. |
abstract Comment |
createComment(java.lang.String text)
Create a comment |
abstract DTD |
createDTD(java.lang.String dtd)
Create a Document type definition event This string contains the entire document type declaration that matches the doctypedecl in the XML 1.0 specification |
abstract EndDocument |
createEndDocument()
Creates a new instance of an EndDocument event |
abstract EndElement |
createEndElement(QName name,
java.util.Iterator namespaces)
Create a new EndElement |
abstract EndElement |
createEndElement(java.lang.String prefix,
java.lang.String namespaceUri,
java.lang.String localName)
Create a new EndElement |
abstract EndElement |
createEndElement(java.lang.String prefix,
java.lang.String namespaceUri,
java.lang.String localName,
java.util.Iterator namespaces)
Create a new EndElement |
abstract EntityReference |
createEntityReference(java.lang.String name,
java.lang.String replacementText)
Creates a new instance of a EntityReference event |
abstract Characters |
createIgnorableSpace(java.lang.String content)
Create an ignorable space |
abstract Namespace |
createNamespace(java.lang.String namespaceURI)
Create a new default Namespace |
abstract Namespace |
createNamespace(java.lang.String prefix,
java.lang.String namespaceUri)
Create a new Namespace |
abstract ProcessingInstruction |
createProcessingInstruction(java.lang.String target,
java.lang.String data)
Create a processing instruction |
abstract Characters |
createSpace(java.lang.String content)
Create a Characters event with the isSpace flag set to true |
abstract StartDocument |
createStartDocument()
Creates a new instance of a StartDocument event |
abstract StartDocument |
createStartDocument(java.lang.String encoding)
Creates a new instance of a StartDocument event |
abstract StartDocument |
createStartDocument(java.lang.String encoding,
java.lang.String version)
Creates a new instance of a StartDocument event |
abstract StartDocument |
createStartDocument(java.lang.String encoding,
java.lang.String version,
boolean standalone)
Creates a new instance of a StartDocument event |
abstract StartElement |
createStartElement(QName name,
java.util.Iterator attributes,
java.util.Iterator namespaces)
Create a new StartElement. |
abstract StartElement |
createStartElement(java.lang.String prefix,
java.lang.String namespaceUri,
java.lang.String localName)
Create a new StartElement. |
abstract StartElement |
createStartElement(java.lang.String prefix,
java.lang.String namespaceUri,
java.lang.String localName,
java.util.Iterator attributes,
java.util.Iterator namespaces)
Create a new StartElement. |
abstract StartElement |
createStartElement(java.lang.String prefix,
java.lang.String namespaceUri,
java.lang.String localName,
java.util.Iterator attributes,
java.util.Iterator namespaces,
NamespaceContext context)
Create a new StartElement. |
static XMLEventFactory |
newInstance()
Create a new instance of the factory |
static XMLEventFactory |
newInstance(java.lang.String factoryId,
java.lang.ClassLoader classLoader)
Create a new instance of the factory |
abstract void |
setLocation(Location location)
This method allows setting of the Location on each event that is created by this factory. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
protected XMLEventFactory()
Method Detail |
public static XMLEventFactory newInstance() throws FactoryConfigurationError
FactoryConfigurationError
- if an instance of this factory cannot be loadedpublic static XMLEventFactory newInstance(java.lang.String factoryId, java.lang.ClassLoader classLoader) throws FactoryConfigurationError
factoryId
- Name of the factory to find, same as
a property nameclassLoader
- classLoader to use
FactoryConfigurationError
- if an instance of this factory cannot be loadedpublic abstract void setLocation(Location location)
location
- the location to set on each event createdpublic abstract Attribute createAttribute(java.lang.String prefix, java.lang.String namespaceURI, java.lang.String localName, java.lang.String value)
prefix
- the prefix of this attribute, may not be nullnamespaceURI
- the attribute value is set to this value, may not be nulllocalName
- the local name of the XML name of the attribute, localName cannot be nullvalue
- the attribute value to set, may not be nullpublic abstract Attribute createAttribute(java.lang.String localName, java.lang.String value)
localName
- the local name of the XML name of the attribute, localName cannot be nullvalue
- the attribute value to set, may not be nullpublic abstract Attribute createAttribute(QName name, java.lang.String value)
name
- the qualified name of the attribute, may not be nullvalue
- the attribute value to set, may not be nullpublic abstract Namespace createNamespace(java.lang.String namespaceURI)
namespaceURI
- the default namespace uripublic abstract Namespace createNamespace(java.lang.String prefix, java.lang.String namespaceUri)
prefix
- the prefix of this namespace, may not be nullnamespaceUri
- the attribute value is set to this value, may not be nullpublic abstract StartElement createStartElement(QName name, java.util.Iterator attributes, java.util.Iterator namespaces)
name
- the qualified name of the attribute, may not be nullattributes
- an optional unordered set of objects that
implement Attribute to add to the new StartElement, may be nullnamespaces
- an optional unordered set of objects that
implement Namespace to add to the new StartElement, may be nullpublic abstract StartElement createStartElement(java.lang.String prefix, java.lang.String namespaceUri, java.lang.String localName)
namespaceUri
- the uri of the QName of the new StartElementlocalName
- the local name of the QName of the new StartElementprefix
- the prefix of the QName of the new StartElementpublic abstract StartElement createStartElement(java.lang.String prefix, java.lang.String namespaceUri, java.lang.String localName, java.util.Iterator attributes, java.util.Iterator namespaces)
namespaceUri
- the uri of the QName of the new StartElementlocalName
- the local name of the QName of the new StartElementprefix
- the prefix of the QName of the new StartElementattributes
- an unordered set of objects that implement
Attribute to add to the new StartElementnamespaces
- an unordered set of objects that implement
Namespace to add to the new StartElementpublic abstract StartElement createStartElement(java.lang.String prefix, java.lang.String namespaceUri, java.lang.String localName, java.util.Iterator attributes, java.util.Iterator namespaces, NamespaceContext context)
namespaceUri
- the uri of the QName of the new StartElementlocalName
- the local name of the QName of the new StartElementprefix
- the prefix of the QName of the new StartElementattributes
- an unordered set of objects that implement
Attribute to add to the new StartElement, may be nullnamespaces
- an unordered set of objects that implement
Namespace to add to the new StartElement, may be nullcontext
- the namespace context of this elementpublic abstract EndElement createEndElement(QName name, java.util.Iterator namespaces)
name
- the qualified name of the EndElementnamespaces
- an optional unordered set of objects that
implement Namespace that have gone out of scope, may be nullpublic abstract EndElement createEndElement(java.lang.String prefix, java.lang.String namespaceUri, java.lang.String localName)
namespaceUri
- the uri of the QName of the new StartElementlocalName
- the local name of the QName of the new StartElementprefix
- the prefix of the QName of the new StartElementpublic abstract EndElement createEndElement(java.lang.String prefix, java.lang.String namespaceUri, java.lang.String localName, java.util.Iterator namespaces)
namespaceUri
- the uri of the QName of the new StartElementlocalName
- the local name of the QName of the new StartElementprefix
- the prefix of the QName of the new StartElementnamespaces
- an unordered set of objects that implement
Namespace that have gone out of scope, may be nullpublic abstract Characters createCharacters(java.lang.String content)
content
- the string to createpublic abstract Characters createCData(java.lang.String content)
content
- the string to createpublic abstract Characters createSpace(java.lang.String content)
content
- the content of the space to createpublic abstract Characters createIgnorableSpace(java.lang.String content)
content
- the space to createpublic abstract StartDocument createStartDocument()
public abstract StartDocument createStartDocument(java.lang.String encoding, java.lang.String version, boolean standalone)
encoding
- the encoding styleversion
- the XML versionstandalone
- the status of standalone may be set to "true" or "false"public abstract StartDocument createStartDocument(java.lang.String encoding, java.lang.String version)
encoding
- the encoding styleversion
- the XML versionpublic abstract StartDocument createStartDocument(java.lang.String encoding)
encoding
- the encoding stylepublic abstract EndDocument createEndDocument()
public abstract EntityReference createEntityReference(java.lang.String name, java.lang.String replacementText)
name
- The name of the referencereplacementText
- The replacementText of the referencepublic abstract Comment createComment(java.lang.String text)
text
- The text of the commentpublic abstract ProcessingInstruction createProcessingInstruction(java.lang.String target, java.lang.String data)
target
- The target of the processing instructiondata
- The text of the processing instructionpublic abstract DTD createDTD(java.lang.String dtd)
dtd
- the text of the document type definition, including the
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |