CabSaveOptions
Contents
[
Hide
]Inheritance: java.lang.Object
public class CabSaveOptions
Options for saving a CAB archive.
Constructors
| Constructor | Description |
|---|---|
| CabSaveOptions() |
Methods
| Method | Description |
|---|---|
| getCloseEntrySource() | Gets a value indicating whether entries’ sources should be closed right after an entry has been compressed. |
| getSkipChecksumCalculation() | Gets a value indicating whether to skip checksum calculation when saving the CAB archive. |
| setCloseEntrySource(boolean value) | Sets a value indicating whether entries’ sources should be closed right after an entry has been compressed. |
| setSkipChecksumCalculation(boolean value) | Sets a value indicating whether to skip checksum calculation when saving the CAB archive. |
CabSaveOptions()
public CabSaveOptions()
getCloseEntrySource()
public final boolean getCloseEntrySource()
Gets a value indicating whether entries’ sources should be closed right after an entry has been compressed.
Returns: boolean - a value indicating whether entries’ sources should be closed right after an entry has been compressed.
getSkipChecksumCalculation()
public final boolean getSkipChecksumCalculation()
Gets a value indicating whether to skip checksum calculation when saving the CAB archive.
Returns: boolean - a value indicating whether to skip checksum calculation when saving the CAB archive.
setCloseEntrySource(boolean value)
public final void setCloseEntrySource(boolean value)
Sets a value indicating whether entries’ sources should be closed right after an entry has been compressed.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| value | boolean | a value indicating whether entries’ sources should be closed right after an entry has been compressed. |
setSkipChecksumCalculation(boolean value)
public final void setSkipChecksumCalculation(boolean value)
Sets a value indicating whether to skip checksum calculation when saving the CAB archive.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| value | boolean | a value indicating whether to skip checksum calculation when saving the CAB archive. |