Package org.codehaus.jettison
Class AbstractXMLOutputFactory
- java.lang.Object
-
- javax.xml.stream.XMLOutputFactory
-
- org.codehaus.jettison.AbstractXMLOutputFactory
-
- Direct Known Subclasses:
BadgerFishXMLOutputFactory
,MappedXMLOutputFactory
public abstract class AbstractXMLOutputFactory extends XMLOutputFactory
-
-
Field Summary
-
Fields inherited from class javax.xml.stream.XMLOutputFactory
IS_REPAIRING_NAMESPACES
-
-
Constructor Summary
Constructors Constructor Description AbstractXMLOutputFactory()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description XMLEventWriter
createXMLEventWriter(OutputStream out)
XMLEventWriter
createXMLEventWriter(OutputStream out, String charset)
XMLEventWriter
createXMLEventWriter(Writer writer)
XMLEventWriter
createXMLEventWriter(Result result)
XMLStreamWriter
createXMLStreamWriter(OutputStream out)
XMLStreamWriter
createXMLStreamWriter(OutputStream out, String charset)
abstract XMLStreamWriter
createXMLStreamWriter(Writer writer)
XMLStreamWriter
createXMLStreamWriter(Result result)
Object
getProperty(String arg0)
boolean
isPropertySupported(String arg0)
void
setProperty(String arg0, Object arg1)
-
Methods inherited from class javax.xml.stream.XMLOutputFactory
newFactory, newFactory, newInstance, newInstance
-
-
-
-
Method Detail
-
createXMLEventWriter
public XMLEventWriter createXMLEventWriter(OutputStream out, String charset) throws XMLStreamException
- Specified by:
createXMLEventWriter
in classXMLOutputFactory
- Throws:
XMLStreamException
-
createXMLEventWriter
public XMLEventWriter createXMLEventWriter(OutputStream out) throws XMLStreamException
- Specified by:
createXMLEventWriter
in classXMLOutputFactory
- Throws:
XMLStreamException
-
createXMLEventWriter
public XMLEventWriter createXMLEventWriter(Result result) throws XMLStreamException
- Specified by:
createXMLEventWriter
in classXMLOutputFactory
- Throws:
XMLStreamException
-
createXMLEventWriter
public XMLEventWriter createXMLEventWriter(Writer writer) throws XMLStreamException
- Specified by:
createXMLEventWriter
in classXMLOutputFactory
- Throws:
XMLStreamException
-
createXMLStreamWriter
public XMLStreamWriter createXMLStreamWriter(OutputStream out, String charset) throws XMLStreamException
- Specified by:
createXMLStreamWriter
in classXMLOutputFactory
- Throws:
XMLStreamException
-
createXMLStreamWriter
public XMLStreamWriter createXMLStreamWriter(OutputStream out) throws XMLStreamException
- Specified by:
createXMLStreamWriter
in classXMLOutputFactory
- Throws:
XMLStreamException
-
createXMLStreamWriter
public XMLStreamWriter createXMLStreamWriter(Result result) throws XMLStreamException
- Specified by:
createXMLStreamWriter
in classXMLOutputFactory
- Throws:
XMLStreamException
-
createXMLStreamWriter
public abstract XMLStreamWriter createXMLStreamWriter(Writer writer) throws XMLStreamException
- Specified by:
createXMLStreamWriter
in classXMLOutputFactory
- Throws:
XMLStreamException
-
getProperty
public Object getProperty(String arg0) throws IllegalArgumentException
- Specified by:
getProperty
in classXMLOutputFactory
- Throws:
IllegalArgumentException
-
isPropertySupported
public boolean isPropertySupported(String arg0)
- Specified by:
isPropertySupported
in classXMLOutputFactory
-
setProperty
public void setProperty(String arg0, Object arg1) throws IllegalArgumentException
- Specified by:
setProperty
in classXMLOutputFactory
- Throws:
IllegalArgumentException
-
-