public static enum OperationInfo.State extends java.lang.Enum<OperationInfo.State>
Enum Constant and Description |
---|
Cancelled
Операция отменена Прикладной системой
|
Challenged
Для операции запрошено подтверждение
|
Completed
Операция была подтверждена и обработана
|
Confirmed
Операция была подтверждена пользователем
|
Created
Операция создана, подтверждение ещё не было запрошено
|
Declined
Операция отменена пользователем
|
Error
Возникла ошибка при обработке операции
|
Expired
Операция истекла
|
Processing
Операция выполняется
|
Running
Операция выполняется
|
Modifier and Type | Method and Description |
---|---|
static OperationInfo.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OperationInfo.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperationInfo.State Created
public static final OperationInfo.State Challenged
public static final OperationInfo.State Running
public static final OperationInfo.State Processing
public static final OperationInfo.State Declined
public static final OperationInfo.State Cancelled
public static final OperationInfo.State Error
public static final OperationInfo.State Expired
public static final OperationInfo.State Completed
public static final OperationInfo.State Confirmed
public static OperationInfo.State[] values()
for (OperationInfo.State c : OperationInfo.State.values()) System.out.println(c);
public static OperationInfo.State 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