public enum VersionNeededToExtract extends Enum<VersionNeededToExtract>
| Enum Constant and Description |
|---|
AES_ENCRYPTED |
DEFAULT |
DEFLATE_COMPRESSED |
ZIP_64_FORMAT |
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
static VersionNeededToExtract |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VersionNeededToExtract[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VersionNeededToExtract DEFAULT
public static final VersionNeededToExtract DEFLATE_COMPRESSED
public static final VersionNeededToExtract ZIP_64_FORMAT
public static final VersionNeededToExtract AES_ENCRYPTED
public static VersionNeededToExtract[] values()
for (VersionNeededToExtract c : VersionNeededToExtract.values()) System.out.println(c);
public static VersionNeededToExtract valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic int getCode()
Copyright © 2021. All rights reserved.