Package com.gemalto.mfs.mwsdk.cdcvm
Enum Class DeviceKeyguardSupport
- All Implemented Interfaces:
Serializable,Comparable<DeviceKeyguardSupport>,Constable
An enum that identifies if the device is capable of supporting the device keyguard as CHVerificationMethod.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe SDK will return this error if the firmware version is earlier than Android 6.0.An error is returned if secure lock (PIN, password or pattern) is not enabled in the device.The SDK supports the use of device keyguard as CHVerificationMethod feature. -
Method Summary
Modifier and TypeMethodDescriptiontoString()String representation of the Enum.static DeviceKeyguardSupportReturns the enum constant of this class with the specified name.static DeviceKeyguardSupport[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ANDROID_VERSION_NOT_SUPPORTED
The SDK will return this error if the firmware version is earlier than Android 6.0. -
SECURE_LOCK_NOT_PRESENTED
An error is returned if secure lock (PIN, password or pattern) is not enabled in the device. -
SUPPORTED
The SDK supports the use of device keyguard as CHVerificationMethod feature.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
toString
String representation of the Enum.- Overrides:
toStringin classEnum<DeviceKeyguardSupport>- Returns:
- String representation of the Enum.
-