public static enum EncryptionDetails.EncryptionAlgorithmEnum extends Enum<EncryptionDetails.EncryptionAlgorithmEnum>
Enum Constant and Description |
---|
RC4_128
Algorithm, with an RC4 encryption key length of 128 bits and advanced permission set;
|
RC4_40
Algorithm, with an RC4 encryption key length of 40 bits;
|
Modifier and Type | Method and Description |
---|---|
int |
getType()
Gets the value that represents the type of the enum.
|
static EncryptionDetails.EncryptionAlgorithmEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EncryptionDetails.EncryptionAlgorithmEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EncryptionDetails.EncryptionAlgorithmEnum RC4_40
Algorithm, with an RC4 encryption key length of 40 bits;
public static final EncryptionDetails.EncryptionAlgorithmEnum RC4_128
Algorithm, with an RC4 encryption key length of 128 bits and advanced permission set;
public static EncryptionDetails.EncryptionAlgorithmEnum[] values()
for (EncryptionDetails.EncryptionAlgorithmEnum c : EncryptionDetails.EncryptionAlgorithmEnum.values()) System.out.println(c);
public static EncryptionDetails.EncryptionAlgorithmEnum 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 getType()