public enum BitLockerEncryptionMethod extends java.lang.Enum<BitLockerEncryptionMethod>
| Enum Constant and Description |
|---|
AES_CBC128
aes Cbc128
|
AES_CBC256
aes Cbc256
|
UNEXPECTED_VALUE
For BitLockerEncryptionMethod values that were not expected from the service
|
XTS_AES128
xts Aes128
|
XTS_AES256
xts Aes256
|
| Modifier and Type | Method and Description |
|---|---|
static BitLockerEncryptionMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BitLockerEncryptionMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BitLockerEncryptionMethod AES_CBC128
public static final BitLockerEncryptionMethod AES_CBC256
public static final BitLockerEncryptionMethod XTS_AES128
public static final BitLockerEncryptionMethod XTS_AES256
public static final BitLockerEncryptionMethod UNEXPECTED_VALUE
public static BitLockerEncryptionMethod[] values()
for (BitLockerEncryptionMethod c : BitLockerEncryptionMethod.values()) System.out.println(c);
public static BitLockerEncryptionMethod 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 null