public enum OperationType extends java.lang.Enum<OperationType>
| Enum Constant and Description |
|---|
BACK_SALE |
CASH_BACK |
CASH_PAYMENT |
CASHLESS_BACK |
CASHLESS_PAYMENT |
COMMISSION |
COMMISSION_BACK |
COMMISSION_SALE_REPORT |
COMMISSION_WRITE_OFF_REPORT |
GOODS_REVALUATION |
INVOICE |
INVOICE_FOR_PAYMENT |
ORDER |
OTHER |
RIGHTS_TRANSFER |
SALE |
| Modifier and Type | Method and Description |
|---|---|
static OperationType |
fromValue(java.lang.String value) |
java.lang.String |
value() |
static OperationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperationType ORDER
public static final OperationType INVOICE_FOR_PAYMENT
public static final OperationType SALE
public static final OperationType INVOICE
public static final OperationType BACK_SALE
public static final OperationType COMMISSION
public static final OperationType COMMISSION_BACK
public static final OperationType COMMISSION_SALE_REPORT
public static final OperationType COMMISSION_WRITE_OFF_REPORT
public static final OperationType CASH_PAYMENT
public static final OperationType CASH_BACK
public static final OperationType CASHLESS_PAYMENT
public static final OperationType CASHLESS_BACK
public static final OperationType GOODS_REVALUATION
public static final OperationType RIGHTS_TRANSFER
public static final OperationType OTHER
public static OperationType[] values()
for (OperationType c : OperationType.values()) System.out.println(c);
public static OperationType 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 nullpublic java.lang.String value()
public static OperationType fromValue(java.lang.String value)