Interface CabConstants
public interface CabConstants
{
// Fields
static final int CAB_BLOCK_SIZE;
static final int CAB_PROGRESS_INPUT;
static final int COMPRESSION_LZX;
static final int COMPRESSION_MSZIP;
static final int COMPRESSION_NONE;
static final int COMPRESSION_QUANTUM;
static final int RESERVED_CFDATA;
static final int RESERVED_CFFOLDER;
static final int RESERVED_CFHEADER;
}
This interface contains the constants used in cabinet creation and extraction. The COMPRESSION constants are used to select the compression type used in a new folder during in cabinet creation. The PROGRESS constants are used to indicate the type of progress message being sent to the progress method in CabProgressInterface. The RESERVED constants are used when decompressing cabinets.
- CAB_BLOCK_SIZE
- The size of input frames before compression.
- CAB_PROGRESS_INPUT
- When creating a cabinet, a progress report on a file being added.
- COMPRESSION_LZX
- LZX compression (selectable history window of 32K to 2048K).
- COMPRESSION_MSZIP
- MSZIP compression (32K history window).
- COMPRESSION_NONE
- Compression type indicating no compression.
- COMPRESSION_QUANTUM
- Quantum compression (not supported).
- RESERVED_CFDATA
- Indicates a CFDATA reserved area.
- RESERVED_CFFOLDER
- Indicates a CFFOLDER reserved area.
- RESERVED_CFHEADER
- Indicates a CFHEADER reserved area.