public enum EncryptionMethod extends Enum<EncryptionMethod>
| Enum Constant and Description |
|---|
AES
Encrypted with AES, the strongest choice but currently
cannot be expanded in Windows Explorer
|
NONE
No encryption is performed
|
ZIP_STANDARD
Encrypted with the weak ZIP standard algorithm
|
ZIP_STANDARD_VARIANT_STRONG
Encrypted with the stronger ZIP standard algorithm
|
| Modifier and Type | Method and Description |
|---|---|
static EncryptionMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EncryptionMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EncryptionMethod NONE
public static final EncryptionMethod ZIP_STANDARD
public static final EncryptionMethod ZIP_STANDARD_VARIANT_STRONG
public static final EncryptionMethod AES
public static EncryptionMethod[] values()
for (EncryptionMethod c : EncryptionMethod.values()) System.out.println(c);
public static EncryptionMethod 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 nullCopyright © 2021. All rights reserved.