All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.lingala.zip4j.headers.VersionNeededToExtract Maven / Gradle / Ivy

There is a newer version: 2.11.5
Show newest version
package net.lingala.zip4j.headers;

public enum VersionNeededToExtract {

  DEFAULT(10),
  DEFLATE_COMPRESSED(20),
  ZIP_64_FORMAT(45),
  AES_ENCRYPTED(51);

  private int code;

  VersionNeededToExtract(int code) {
    this.code = code;
  }

  public int getCode() {
    return code;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy