Package org.apache.abdera.util
Class AbstractWriter
- java.lang.Object
-
- org.apache.abdera.util.AbstractWriter
-
- All Implemented Interfaces:
Writer
- Direct Known Subclasses:
AbstractNamedWriter
@Deprecated(since="2021-07-29") public abstract class AbstractWriter extends java.lang.Object implements Writer
Deprecated.
-
-
Constructor Summary
Constructors Constructor Description AbstractWriter()
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description WriterOptions
getDefaultWriterOptions()
Deprecated.Writer
setDefaultWriterOptions(WriterOptions options)
Deprecated.java.lang.Object
write(Base base)
Deprecated.Return the serialized form of the Abdera Basevoid
writeTo(Base base, java.io.OutputStream out)
Deprecated.Serialized the given Abdera Base to the given outputstreamvoid
writeTo(Base base, java.io.Writer out)
Deprecated.Serialized the given Abdera Base to the given writervoid
writeTo(Base base, java.nio.channels.WritableByteChannel out)
Deprecated.void
writeTo(Base base, java.nio.channels.WritableByteChannel out, WriterOptions options)
Deprecated.
-
-
-
Method Detail
-
getDefaultWriterOptions
public WriterOptions getDefaultWriterOptions()
Deprecated.- Specified by:
getDefaultWriterOptions
in interfaceWriter
-
setDefaultWriterOptions
public Writer setDefaultWriterOptions(WriterOptions options)
Deprecated.- Specified by:
setDefaultWriterOptions
in interfaceWriter
-
write
public java.lang.Object write(Base base) throws java.io.IOException
Deprecated.Description copied from interface:Writer
Return the serialized form of the Abdera Base
-
writeTo
public void writeTo(Base base, java.io.OutputStream out) throws java.io.IOException
Deprecated.Description copied from interface:Writer
Serialized the given Abdera Base to the given outputstream
-
writeTo
public void writeTo(Base base, java.io.Writer out) throws java.io.IOException
Deprecated.Description copied from interface:Writer
Serialized the given Abdera Base to the given writer
-
writeTo
public void writeTo(Base base, java.nio.channels.WritableByteChannel out, WriterOptions options) throws java.io.IOException
Deprecated.
-
-