Enum Class DeviceBindingStatus
- All Implemented Interfaces:
Serializable,Comparable<DeviceBindingStatus>,java.lang.constant.Constable
Status enum for device binding.
Represents the possible binding statuses for a device binding.
- Since:
- 4.3.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe device binding has been approved.The device binding has been challenged.The device binding has been declined. -
Method Summary
Modifier and TypeMethodDescriptionstatic DeviceBindingStatusfromString(String val) Converts a string value to DeviceBindingStatus enum.static DeviceBindingStatusReturns the enum constant of this class with the specified name.static DeviceBindingStatus[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
APPROVED
The device binding has been approved. -
DECLINED
The device binding has been declined. -
CHALLENGED
The device binding has been challenged.
-
-
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
-
fromString
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.
-