Package org.apache.abdera.util
Class AbstractWriterOptions
- java.lang.Object
-
- org.apache.abdera.util.AbstractWriterOptions
-
- All Implemented Interfaces:
java.lang.Cloneable
,WriterOptions
@Deprecated(since="2021-07-29") public abstract class AbstractWriterOptions extends java.lang.Object implements WriterOptions
Deprecated.
-
-
Constructor Summary
Constructors Constructor Description AbstractWriterOptions()
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.lang.Object
clone()
Deprecated.boolean
getAutoClose()
Deprecated.True if the writer should close the output stream or writer when finishedjava.lang.String
getCharset()
Deprecated.The character encoding to use for the outputCompressionUtil.CompressionCodec[]
getCompressionCodecs()
Deprecated.When writing, use the specified compression codecsWriterOptions
setAutoClose(boolean autoclose)
Deprecated.True if the writer should close the output stream or writer when finishedWriterOptions
setCharset(java.lang.String charset)
Deprecated.The character encoding to use for the outputWriterOptions
setCompressionCodecs(CompressionUtil.CompressionCodec... codecs)
Deprecated.When writing, use the specified compression codecs
-
-
-
Method Detail
-
clone
public java.lang.Object clone() throws java.lang.CloneNotSupportedException
Deprecated.- Specified by:
clone
in interfaceWriterOptions
- Throws:
java.lang.CloneNotSupportedException
-
getCompressionCodecs
public CompressionUtil.CompressionCodec[] getCompressionCodecs()
Deprecated.Description copied from interface:WriterOptions
When writing, use the specified compression codecs- Specified by:
getCompressionCodecs
in interfaceWriterOptions
-
setCompressionCodecs
public WriterOptions setCompressionCodecs(CompressionUtil.CompressionCodec... codecs)
Deprecated.Description copied from interface:WriterOptions
When writing, use the specified compression codecs- Specified by:
setCompressionCodecs
in interfaceWriterOptions
-
getCharset
public java.lang.String getCharset()
Deprecated.Description copied from interface:WriterOptions
The character encoding to use for the output- Specified by:
getCharset
in interfaceWriterOptions
-
setCharset
public WriterOptions setCharset(java.lang.String charset)
Deprecated.Description copied from interface:WriterOptions
The character encoding to use for the output- Specified by:
setCharset
in interfaceWriterOptions
-
getAutoClose
public boolean getAutoClose()
Deprecated.Description copied from interface:WriterOptions
True if the writer should close the output stream or writer when finished- Specified by:
getAutoClose
in interfaceWriterOptions
-
setAutoClose
public WriterOptions setAutoClose(boolean autoclose)
Deprecated.Description copied from interface:WriterOptions
True if the writer should close the output stream or writer when finished- Specified by:
setAutoClose
in interfaceWriterOptions
-
-