void |
TarArchive.save(OutputStream output,
TarFormat format) |
Saves archive to the stream provided.
|
void |
TarArchive.save(String destinationFileName,
TarFormat format) |
Saves archive to the destination file provided.
|
void |
TarArchive.saveGzipped(OutputStream output,
TarFormat format) |
Saves archive to the stream with gzip compression.
|
void |
TarArchive.saveGzipped(String path,
TarFormat format) |
Saves archive to the file by path with gzip compression.
|
void |
TarArchive.saveLZ4Compressed(OutputStream output,
TarFormat format) |
Saves archive to the stream with LZ4 compression.
|
void |
TarArchive.saveLZ4Compressed(String path,
TarFormat format) |
Saves archive to the file by path with LZ4 compression.
|
void |
TarArchive.saveLzipped(OutputStream output,
TarFormat format) |
Saves archive to the stream with lzip compression.
|
void |
TarArchive.saveLzipped(String path,
TarFormat format) |
Saves archive to the file by path with lzip compression.
|
void |
TarArchive.saveLZMACompressed(OutputStream output,
TarFormat format) |
Saves archive to the stream with LZMA compression.
|
void |
TarArchive.saveLZMACompressed(String path,
TarFormat format) |
Saves archive to the file by path with lzma compression.
|
void |
TarArchive.saveXzCompressed(OutputStream output,
TarFormat format) |
Saves archive to the stream with xz compression.
|
void |
TarArchive.saveXzCompressed(OutputStream output,
TarFormat format,
XzArchiveSettings settings) |
Saves archive to the stream with xz compression.
|
void |
TarArchive.saveXzCompressed(String path,
TarFormat format) |
Saves archive to the file by path with xz compression.
|
void |
TarArchive.saveXzCompressed(String path,
TarFormat format,
XzArchiveSettings settings) |
Saves archive to the file by path with xz compression.
|
void |
TarArchive.saveZCompressed(OutputStream output,
TarFormat format) |
Saves archive to the stream with Z compression.
|
void |
TarArchive.saveZCompressed(String path,
TarFormat format) |
Saves archive to the file by path with Z compression.
|
void |
TarArchive.saveZstandard(OutputStream output,
TarFormat format) |
Saves archive to the stream with Zstandard compression.
|
void |
TarArchive.saveZstandard(String path,
TarFormat format) |
Saves archive to the file by path with Zstandard compression.
|
void |
Bzip2Archive.setSource(TarArchive tarArchive,
TarFormat format) |
Sets the content to be compressed within the archive.
|
void |
Lz4Archive.setSource(TarArchive tarArchive,
TarFormat format) |
Sets the content to be compressed within the archive.
|