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