This is the compession strategy contants class. It contains constants that can be used in the strategy setting.
This is the DEFAULT_STRATEGY constant. This strategy is optimized for normal data. It combines Huffman's compression with the standard text compression.
This is the FILTERED constant. This strategy is optimized for data that is produced by a filter. Meaning it is one kind of data.
This is the FIXED constant. This strategy is optimized for simpler applications and is optimized for shorter strings, as it doesn't use Huffman's dynamic codes.
This is the HUFFMAN_ONLY constant. This strategy is optimized for data you don't think contain any similar data, since it won't do any string matching.
This is the RLE constant. This strategy is optimized for PNG images and is designed to be almost as fust as HUFFMAN_ONLY