Package com.aspose.zip
Class ArchiveEntrySettings
- java.lang.Object
-
- com.aspose.zip.ArchiveEntrySettings
-
public class ArchiveEntrySettings extends Object
Settings used to compress or decompress entries.
-
-
Constructor Summary
Constructors Constructor Description ArchiveEntrySettings()Initializes a new instance of theArchiveEntrySettingsclass.ArchiveEntrySettings(CompressionSettings compressionSettings)Initializes a new instance of theArchiveEntrySettingsclass.ArchiveEntrySettings(CompressionSettings compressionSettings, EncryptionSettings encryptionSettings)Initializes a new instance of theArchiveEntrySettingsclass.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CompressionSettingsgetCompressionSettings()Gets settings for compression or decompression routine.EncryptionSettingsgetEncryptionSettings()Gets settings for encryption or decryption.
-
-
-
Constructor Detail
-
ArchiveEntrySettings
public ArchiveEntrySettings()
Initializes a new instance of the
ArchiveEntrySettingsclass.
-
ArchiveEntrySettings
public ArchiveEntrySettings(CompressionSettings compressionSettings)
Initializes a new instance of the
ArchiveEntrySettingsclass.- Parameters:
compressionSettings- Settings for compression. Pass null for default deflate settings.Can be one of these:
-
ArchiveEntrySettings
public ArchiveEntrySettings(CompressionSettings compressionSettings, EncryptionSettings encryptionSettings)
Initializes a new instance of the
ArchiveEntrySettingsclass.- Parameters:
compressionSettings- Settings for compression. Pass null for default deflate settings.Can be one of these:
encryptionSettings- Settings for encryption. Pass null if no need to encrypt or decrypt.Can be one of these:
-
-
Method Detail
-
getCompressionSettings
public final CompressionSettings getCompressionSettings()
Gets settings for compression or decompression routine.
Can be one of these:
- Returns:
- settings for compression or decompression routine.
-
getEncryptionSettings
public final EncryptionSettings getEncryptionSettings()
Gets settings for encryption or decryption. Settings of particular entry may vary.
- Returns:
- settings for encryption or decryption. Settings of particular entry may vary.
-
-