public static enum Device.DeviceStatus extends java.lang.Enum<Device.DeviceStatus>
Enum Constant and Description |
---|
Active
Мобильное Устройство готово к использованию
|
ApproveRequired
Новое МУ ожидает подтверждения добавления на другом устройстве
|
Created
Мобильное Устройство (МУ) создано
|
Expired
Срок действия векторы аутентификации истёк
|
Inactive
МУ заблокировано из-за недоступности метода аутентификации для пользователя
|
Installed
Векторы аутентификации загружены в МУ
|
NotVerified
Учётная запись пользователя требует подтверждения
|
Rejected
Добавление нового МУ отклонено
|
Modifier and Type | Method and Description |
---|---|
static Device.DeviceStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Device.DeviceStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Device.DeviceStatus Created
public static final Device.DeviceStatus Installed
public static final Device.DeviceStatus NotVerified
public static final Device.DeviceStatus ApproveRequired
public static final Device.DeviceStatus Rejected
public static final Device.DeviceStatus Active
public static final Device.DeviceStatus Expired
public static final Device.DeviceStatus Inactive
public static Device.DeviceStatus[] values()
for (Device.DeviceStatus c : Device.DeviceStatus.values()) System.out.println(c);
public static Device.DeviceStatus valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null