public enum OperationKind extends Enum<OperationKind>
Enum Constant and Description |
---|
CHARGES |
COMMISSION |
COMPOSED_PRODUCT |
DELIVERY_OVERHEADS |
ORDER_OVERHEADS |
OVERHEADS_REBATE |
PAYMENT_OVERHEADS |
PERF_COUNTERMARK |
PRODUCT_COMPOSITION |
SEAT_COUNTERMARK |
SIMPLE_PRODUCT |
SINGLE_ENTRY |
TR_BALANCE |
Modifier and Type | Method and Description |
---|---|
static OperationKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OperationKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperationKind SINGLE_ENTRY
public static final OperationKind SIMPLE_PRODUCT
public static final OperationKind COMPOSED_PRODUCT
public static final OperationKind ORDER_OVERHEADS
public static final OperationKind PAYMENT_OVERHEADS
public static final OperationKind CHARGES
public static final OperationKind DELIVERY_OVERHEADS
public static final OperationKind OVERHEADS_REBATE
public static final OperationKind COMMISSION
public static final OperationKind PRODUCT_COMPOSITION
public static final OperationKind PERF_COUNTERMARK
public static final OperationKind SEAT_COUNTERMARK
public static final OperationKind TR_BALANCE
public static OperationKind[] values()
for (OperationKind c : OperationKind.values()) System.out.println(c);
public static OperationKind valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2021. All rights reserved.