Package org.apache.abdera.writer
Interface Writer
-
- All Known Subinterfaces:
NamedWriter
- All Known Implementing Classes:
AbstractNamedWriter
,AbstractWriter
@Deprecated(since="2021-07-29") public interface Writer
Deprecated.This API is deprecated as Apache Abdera is a retired project since 2017.Writers are used to serialize Abdera objects
-
-
Method Summary
All Methods Instance Methods Abstract 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 Basejava.lang.Object
write(Base base, WriterOptions options)
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.OutputStream out, WriterOptions options)
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.io.Writer out, WriterOptions options)
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
-
writeTo
void writeTo(Base base, java.io.OutputStream out) throws java.io.IOException
Deprecated.Serialized the given Abdera Base to the given outputstream- Throws:
java.io.IOException
-
writeTo
void writeTo(Base base, java.io.Writer out) throws java.io.IOException
Deprecated.Serialized the given Abdera Base to the given writer- Throws:
java.io.IOException
-
write
java.lang.Object write(Base base) throws java.io.IOException
Deprecated.Return the serialized form of the Abdera Base- Throws:
java.io.IOException
-
writeTo
void writeTo(Base base, java.io.OutputStream out, WriterOptions options) throws java.io.IOException
Deprecated.Serialized the given Abdera Base to the given outputstream- Throws:
java.io.IOException
-
writeTo
void writeTo(Base base, java.io.Writer out, WriterOptions options) throws java.io.IOException
Deprecated.Serialized the given Abdera Base to the given writer- Throws:
java.io.IOException
-
write
java.lang.Object write(Base base, WriterOptions options) throws java.io.IOException
Deprecated.Return the serialized form of the Abdera Base- Throws:
java.io.IOException
-
writeTo
void writeTo(Base base, java.nio.channels.WritableByteChannel out) throws java.io.IOException
Deprecated.- Throws:
java.io.IOException
-
writeTo
void writeTo(Base base, java.nio.channels.WritableByteChannel out, WriterOptions options) throws java.io.IOException
Deprecated.- Throws:
java.io.IOException
-
getDefaultWriterOptions
WriterOptions getDefaultWriterOptions()
Deprecated.
-
setDefaultWriterOptions
Writer setDefaultWriterOptions(WriterOptions options)
Deprecated.
-
-