public enum InterceptedStage extends java.lang.Enum<InterceptedStage>
Enum Constant and Description |
---|
AFTER_FISCALIZE
После фискализации
|
BEFORE_FISCALIZE
Перед фискализацией
|
CALCULATION_COMPLETE
Закончен расчет скидок.
|
DISCOUNT_CANCELLED
Отмена расчета скидок (в т.ч.
|
PRODUCT_FOUND_FOR_SALE
Найден продукт для продажи
|
SUBTOTAL_CANCELED
Отмена расчета чека (вызывается при переходе в состояние добавления товара или при повторном расчете чека)
|
SUBTOTAL_START
Старт расчета чека (вызывается после валидации чека на подытоге, но до расчета скидок и разделения)
|
Modifier and Type | Method and Description |
---|---|
static InterceptedStage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InterceptedStage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InterceptedStage CALCULATION_COMPLETE
public static final InterceptedStage BEFORE_FISCALIZE
public static final InterceptedStage AFTER_FISCALIZE
public static final InterceptedStage DISCOUNT_CANCELLED
public static final InterceptedStage SUBTOTAL_START
public static final InterceptedStage SUBTOTAL_CANCELED
public static final InterceptedStage PRODUCT_FOUND_FOR_SALE
public static InterceptedStage[] values()
for (InterceptedStage c : InterceptedStage.values()) System.out.println(c);
public static InterceptedStage 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