/**
* Base format class
+ *
+ * @since 4.0
*/
public class BaseFormat {
Collections.<String, Object> emptyMap());
}
+ /**
+ * @since 4.0
+ */
public ArchiveOutputStream createArchiveOutputStream(OutputStream s,
Map<String, Object> o) throws IOException {
TarArchiveOutputStream out = new TarArchiveOutputStream(s, "UTF-8"); //$NON-NLS-1$
Collections.<String, Object> emptyMap());
}
+ /**
+ * @since 4.0
+ */
public ArchiveOutputStream createArchiveOutputStream(OutputStream s,
Map<String, Object> o) throws IOException {
BZip2CompressorOutputStream out = new BZip2CompressorOutputStream(s);
Collections.<String, Object> emptyMap());
}
+ /**
+ * @since 4.0
+ */
public ArchiveOutputStream createArchiveOutputStream(OutputStream s,
Map<String, Object> o) throws IOException {
GzipCompressorOutputStream out = new GzipCompressorOutputStream(s);
Collections.<String, Object> emptyMap());
}
+ /**
+ * @since 4.0
+ */
public ArchiveOutputStream createArchiveOutputStream(OutputStream s,
Map<String, Object> o) throws IOException {
XZCompressorOutputStream out = new XZCompressorOutputStream(s);
Collections.<String, Object> emptyMap());
}
+ /**
+ * @since 4.0
+ */
public ArchiveOutputStream createArchiveOutputStream(OutputStream s,
Map<String, Object> o) throws IOException {
return applyFormatOptions(new ZipArchiveOutputStream(s), o);