Package org.apache.abdera.writer
Interface WriterOptions
-
- All Superinterfaces:
java.lang.Cloneable
- All Known Implementing Classes:
AbstractWriterOptions
@Deprecated(since="2021-07-29") public interface WriterOptions extends java.lang.Cloneable
Deprecated.
-
-
Method Summary
All Methods Instance Methods Abstract 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
-
getCompressionCodecs
CompressionUtil.CompressionCodec[] getCompressionCodecs()
Deprecated.When writing, use the specified compression codecs
-
setCompressionCodecs
WriterOptions setCompressionCodecs(CompressionUtil.CompressionCodec... codecs)
Deprecated.When writing, use the specified compression codecs
-
clone
java.lang.Object clone() throws java.lang.CloneNotSupportedException
Deprecated.- Throws:
java.lang.CloneNotSupportedException
-
getCharset
java.lang.String getCharset()
Deprecated.The character encoding to use for the output
-
setCharset
WriterOptions setCharset(java.lang.String charset)
Deprecated.The character encoding to use for the output
-
getAutoClose
boolean getAutoClose()
Deprecated.True if the writer should close the output stream or writer when finished
-
setAutoClose
WriterOptions setAutoClose(boolean autoclose)
Deprecated.True if the writer should close the output stream or writer when finished
-
-