Enum Class DeviceBindingStatus

java.lang.Object
java.lang.Enum<DeviceBindingStatus>
com.thalesgroup.gemalto.d1.digitalcard.DeviceBindingStatus
All Implemented Interfaces:
Serializable, Comparable<DeviceBindingStatus>, java.lang.constant.Constable

public enum DeviceBindingStatus extends Enum<DeviceBindingStatus>
Status enum for device binding. Represents the possible binding statuses for a device binding.
Since:
4.3.0
  • Enum Constant Details

    • APPROVED

      public static final DeviceBindingStatus APPROVED
      The device binding has been approved.
    • DECLINED

      public static final DeviceBindingStatus DECLINED
      The device binding has been declined.
    • CHALLENGED

      public static final DeviceBindingStatus CHALLENGED
      The device binding has been challenged.
  • Method Details

    • values

      public static DeviceBindingStatus[] 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 DeviceBindingStatus 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
    • fromString

      public static DeviceBindingStatus fromString(String val)
      Converts a string value to DeviceBindingStatus enum.
      Parameters:
      val - The string value to convert.
      Returns:
      The corresponding DeviceBindingStatus, or null if no match is found.