Package odata.msgraph.client.beta.enums
Enum AdvancedBitLockerState
- java.lang.Object
-
- java.lang.Enum<AdvancedBitLockerState>
-
- odata.msgraph.client.beta.enums.AdvancedBitLockerState
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<AdvancedBitLockerState>
public enum AdvancedBitLockerState extends Enum<AdvancedBitLockerState> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static AdvancedBitLockerStatevalueOf(String name)Returns the enum constant of this type with the specified name.static AdvancedBitLockerState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SUCCESS
public static final AdvancedBitLockerState SUCCESS
-
NO_USER_CONSENT
public static final AdvancedBitLockerState NO_USER_CONSENT
-
OS_VOLUME_UNPROTECTED
public static final AdvancedBitLockerState OS_VOLUME_UNPROTECTED
-
OS_VOLUME_TPM_REQUIRED
public static final AdvancedBitLockerState OS_VOLUME_TPM_REQUIRED
-
OS_VOLUME_TPM_ONLY_REQUIRED
public static final AdvancedBitLockerState OS_VOLUME_TPM_ONLY_REQUIRED
-
OS_VOLUME_TPM_PIN_REQUIRED
public static final AdvancedBitLockerState OS_VOLUME_TPM_PIN_REQUIRED
-
OS_VOLUME_TPM_STARTUP_KEY_REQUIRED
public static final AdvancedBitLockerState OS_VOLUME_TPM_STARTUP_KEY_REQUIRED
-
OS_VOLUME_TPM_PIN_STARTUP_KEY_REQUIRED
public static final AdvancedBitLockerState OS_VOLUME_TPM_PIN_STARTUP_KEY_REQUIRED
-
OS_VOLUME_ENCRYPTION_METHOD_MISMATCH
public static final AdvancedBitLockerState OS_VOLUME_ENCRYPTION_METHOD_MISMATCH
-
RECOVERY_KEY_BACKUP_FAILED
public static final AdvancedBitLockerState RECOVERY_KEY_BACKUP_FAILED
-
FIXED_DRIVE_NOT_ENCRYPTED
public static final AdvancedBitLockerState FIXED_DRIVE_NOT_ENCRYPTED
-
FIXED_DRIVE_ENCRYPTION_METHOD_MISMATCH
public static final AdvancedBitLockerState FIXED_DRIVE_ENCRYPTION_METHOD_MISMATCH
-
LOGGED_ON_USER_NON_ADMIN
public static final AdvancedBitLockerState LOGGED_ON_USER_NON_ADMIN
-
WINDOWS_RECOVERY_ENVIRONMENT_NOT_CONFIGURED
public static final AdvancedBitLockerState WINDOWS_RECOVERY_ENVIRONMENT_NOT_CONFIGURED
-
TPM_NOT_AVAILABLE
public static final AdvancedBitLockerState TPM_NOT_AVAILABLE
-
TPM_NOT_READY
public static final AdvancedBitLockerState TPM_NOT_READY
-
NETWORK_ERROR
public static final AdvancedBitLockerState NETWORK_ERROR
-
-
Method Detail
-
values
public static AdvancedBitLockerState[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AdvancedBitLockerState c : AdvancedBitLockerState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AdvancedBitLockerState valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
enumName
public String enumName()
- Specified by:
enumNamein interfacecom.github.davidmoten.odata.client.Enum
-
enumValue
public String enumValue()
- Specified by:
enumValuein interfacecom.github.davidmoten.odata.client.Enum
-
-