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