public enum EncryptionLevel extends Enum<EncryptionLevel>
Enum Constant and Description |
---|
EXP40 |
EXP56 |
FIPS |
HIGH |
LOW |
MEDIUM |
STRONG_NONE |
Modifier and Type | Method and Description |
---|---|
static EncryptionLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EncryptionLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EncryptionLevel STRONG_NONE
public static final EncryptionLevel EXP40
public static final EncryptionLevel EXP56
public static final EncryptionLevel LOW
public static final EncryptionLevel MEDIUM
public static final EncryptionLevel HIGH
public static final EncryptionLevel FIPS
public static EncryptionLevel[] values()
for (EncryptionLevel c : EncryptionLevel.values()) System.out.println(c);
public static EncryptionLevel 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 © 2000-2020 Apache Software Foundation. All Rights Reserved.