public enum DataEncryptionLevel extends java.lang.Enum<DataEncryptionLevel>
| Enum Constant and Description |
|---|
ENC_128BIT |
ENC_40BIT |
ENC_56BIT |
FORTEZZA |
MIXED |
UNKNOWN_BITS |
UNSECURE |
| Modifier and Type | Method and Description |
|---|---|
static DataEncryptionLevel |
fromInt(int value) |
static DataEncryptionLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataEncryptionLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataEncryptionLevel UNSECURE
public static final DataEncryptionLevel MIXED
public static final DataEncryptionLevel UNKNOWN_BITS
public static final DataEncryptionLevel ENC_40BIT
public static final DataEncryptionLevel ENC_56BIT
public static final DataEncryptionLevel FORTEZZA
public static final DataEncryptionLevel ENC_128BIT
public static DataEncryptionLevel[] values()
for (DataEncryptionLevel c : DataEncryptionLevel.values()) System.out.println(c);
public static DataEncryptionLevel valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static DataEncryptionLevel fromInt(int value)