Package com.sun.xml.rpc.streaming
Class FastInfosetWriterFactoryImpl
- java.lang.Object
-
- com.sun.xml.rpc.streaming.XMLWriterFactory
-
- com.sun.xml.rpc.streaming.FastInfosetWriterFactoryImpl
-
public class FastInfosetWriterFactoryImpl extends XMLWriterFactory
A concrete factory for FI XMLWriter objects.
- Author:
- Santiago.PericasGeertsen@sun.com
-
-
Constructor Summary
Constructors Constructor Description FastInfosetWriterFactoryImpl()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description XMLWritercreateXMLWriter(OutputStream stream)Obtain an XMLWriter on the given OutputStream using the default encoding and XML declaration settings.XMLWritercreateXMLWriter(OutputStream stream, String encoding)Obtain an XMLWriter on the given OutputStream using the given encoding and the default XML declaration settings.XMLWritercreateXMLWriter(OutputStream stream, String encoding, boolean declare)Obtain an XMLWriter on the given OutputStream using the given encoding and the given XML declaration settings.static XMLWriterFactorynewInstance()
-
-
-
Method Detail
-
newInstance
public static XMLWriterFactory newInstance()
-
createXMLWriter
public final XMLWriter createXMLWriter(OutputStream stream)
Description copied from class:XMLWriterFactoryObtain an XMLWriter on the given OutputStream using the default encoding and XML declaration settings.- Specified by:
createXMLWriterin classXMLWriterFactory
-
createXMLWriter
public final XMLWriter createXMLWriter(OutputStream stream, String encoding)
Description copied from class:XMLWriterFactoryObtain an XMLWriter on the given OutputStream using the given encoding and the default XML declaration settings.- Specified by:
createXMLWriterin classXMLWriterFactory
-
createXMLWriter
public final XMLWriter createXMLWriter(OutputStream stream, String encoding, boolean declare)
Description copied from class:XMLWriterFactoryObtain an XMLWriter on the given OutputStream using the given encoding and the given XML declaration settings.- Specified by:
createXMLWriterin classXMLWriterFactory
-
-