Enum Class DeviceKeyguardSupport

java.lang.Object
java.lang.Enum<DeviceKeyguardSupport>
com.gemalto.mfs.mwsdk.cdcvm.DeviceKeyguardSupport
All Implemented Interfaces:
Serializable, Comparable<DeviceKeyguardSupport>, Constable

public enum DeviceKeyguardSupport extends Enum<DeviceKeyguardSupport>
An enum that identifies if the device is capable of supporting the device keyguard as CHVerificationMethod.
  • Enum Constant Details

    • ANDROID_VERSION_NOT_SUPPORTED

      public static final DeviceKeyguardSupport ANDROID_VERSION_NOT_SUPPORTED
      The SDK will return this error if the firmware version is earlier than Android 6.0.
    • SECURE_LOCK_NOT_PRESENTED

      public static final DeviceKeyguardSupport SECURE_LOCK_NOT_PRESENTED
      An error is returned if secure lock (PIN, password or pattern) is not enabled in the device.
    • SUPPORTED

      public static final DeviceKeyguardSupport SUPPORTED
      The SDK supports the use of device keyguard as CHVerificationMethod feature.
  • Method Details

    • values

      public static DeviceKeyguardSupport[] 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

      public static DeviceKeyguardSupport valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      String representation of the Enum.
      Overrides:
      toString in class Enum<DeviceKeyguardSupport>
      Returns:
      String representation of the Enum.