DeviceSettings.EncryptionStatus

enum DeviceSettings.EncryptionStatus


Encryption status of a device.

Summary

Enum Values

ACTIVATING

Encryption is not currently active, but is currently being activated.

ACTIVE

Encryption is active.

ACTIVE_DEFAULT_KEY

Encryption is active, but an encryption key is not set by the user.

ACTIVE_PER_USER

Encryption is active, and the encryption key is tied to the user profile.

ENCRYPTION_STATUS_UNSPECIFIED

Unspecified.

INACTIVE

Encryption is supported by the device, but is not currently active.

UNSUPPORTED

Encryption is not supported by the device.

Public functions

java-static DeviceSettings.EncryptionStatus!
valueOf(name: String!)

Returns the enum constant of this type with the specified name.

java-static Array<DeviceSettings.EncryptionStatus!>!

Returns an array containing the constants of this enum type, in the order they're declared.

Enum Values

ACTIVATING

val DeviceSettings.EncryptionStatus.ACTIVATINGDeviceSettings.EncryptionStatus

Encryption is not currently active, but is currently being activated.

ACTIVE_DEFAULT_KEY

val DeviceSettings.EncryptionStatus.ACTIVE_DEFAULT_KEYDeviceSettings.EncryptionStatus

Encryption is active, but an encryption key is not set by the user.

ACTIVE_PER_USER

val DeviceSettings.EncryptionStatus.ACTIVE_PER_USERDeviceSettings.EncryptionStatus

Encryption is active, and the encryption key is tied to the user profile.

ENCRYPTION_STATUS_UNSPECIFIED

val DeviceSettings.EncryptionStatus.ENCRYPTION_STATUS_UNSPECIFIEDDeviceSettings.EncryptionStatus

Unspecified. No device should have this type.

INACTIVE

val DeviceSettings.EncryptionStatus.INACTIVEDeviceSettings.EncryptionStatus

Encryption is supported by the device, but is not currently active.

UNSUPPORTED

val DeviceSettings.EncryptionStatus.UNSUPPORTEDDeviceSettings.EncryptionStatus

Encryption is not supported by the device.

Public functions

valueOf

java-static fun valueOf(name: String!): DeviceSettings.EncryptionStatus!

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.)

Returns
DeviceSettings.EncryptionStatus!

the enum constant with the specified name

Throws
java.lang.IllegalArgumentException

if this enum type has no constant with the specified name

values

java-static fun values(): Array<DeviceSettings.EncryptionStatus!>!

Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.

Returns
Array<DeviceSettings.EncryptionStatus!>!

an array containing the constants of this enum type, in the order they're declared