CompressionMethod public enum CompressionMethod : UInt16 The compression method of an Entry in a ZIP Archive. none Indicates that an Entry has no compression applied to its contents. Declaration Swift case none = 0 Show on GitHub deflate Indicates that contents of an Entry have been compressed with a zlib compatible Deflate algorithm. Declaration Swift case deflate = 8 Show on GitHub