Searched refs:getCompressionMethod (Results 1 – 5 of 5) sorted by relevance
277 if (oldEntry.getCompressionMethod() != 0 && !oldEntry.isDeflateCompressed()) { in unsuitable()282 if (newEntry.getCompressionMethod() != 0 && !newEntry.isDeflateCompressed()) { in unsuitable()318 return oldEntry.getCompressionMethod() == 0 && newEntry.getCompressionMethod() == 0; in bothEntriesUncompressed()331 return oldEntry.getCompressionMethod() == 0 && newEntry.getCompressionMethod() != 0; in uncompressedChangedToCompressed()346 return newEntry.getCompressionMethod() == 0 && oldEntry.getCompressionMethod() != 0; in compressedChangedToUncompressed()
112 public int getCompressionMethod() { in getCompressionMethod() method in MinimalZipEntry210 if (getCompressionMethod() != 8) { in isDeflateCompressed()
171 Assert.assertEquals(8 /* deflate */, parsed.getCompressionMethod()); in testParseCentralDirectoryEntry()173 Assert.assertEquals(0 /* store */, parsed.getCompressionMethod()); in testParseCentralDirectoryEntry()
82 Assert.assertEquals(expected.level == 0 ? 0 : 8, actual.getCompressionMethod()); in testListEntries()
251 Assert.assertEquals(COMPRESSION_METHOD, defaultEntry.getCompressionMethod()); in testGetters()