Searched refs:levelsByStrategy (Results 1 – 1 of 1) sorted by relevance
/external/archive-patcher/generator/src/main/java/com/google/archivepatcher/generator/ |
D | DefaultDeflateCompressionDiviner.java | 136 final Map<Integer, List<Integer>> levelsByStrategy = new HashMap<>(); in getLevelsByStrategy() local 140 levelsByStrategy.put(0, Collections.unmodifiableList(Arrays.asList(6, 9, 1, 4, 2, 3, 5, 7, 8))); in getLevelsByStrategy() 141 levelsByStrategy.put(1, Collections.unmodifiableList(Arrays.asList(6, 9, 4, 5, 7, 8))); in getLevelsByStrategy() 143 levelsByStrategy.put(2, Collections.singletonList(1)); in getLevelsByStrategy() 144 return Collections.unmodifiableMap(levelsByStrategy); in getLevelsByStrategy()
|