public enum InterceptionStatus extends java.lang.Enum<InterceptionStatus>
Enum Constant and Description |
---|
ABORT
Касса должна завершить прерванный сценарий.
|
CANCEL_RECEIPT
Касса должна аннулировать чек
|
CONTINUE
Плагин произвел необходимые действия и можно продолжить прерванный сценарий.
|
RETRY
Касса должна повторить прерванный сценарий сначала.
|
Modifier and Type | Method and Description |
---|---|
static InterceptionStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InterceptionStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InterceptionStatus CONTINUE
public static final InterceptionStatus RETRY
public static final InterceptionStatus ABORT
public static final InterceptionStatus CANCEL_RECEIPT
public static InterceptionStatus[] values()
for (InterceptionStatus c : InterceptionStatus.values()) System.out.println(c);
public static InterceptionStatus 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