public enum OperationKind extends Enum<OperationKind>
Enum Constant and Description |
---|
CHARGES |
COMMISSION |
COMPOSED_PRODUCT |
OVERHEADS |
PAYMENT_FEE |
PRODUCT_COMPOSITION |
SHIPPING_FEE |
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 CHARGES
public static final OperationKind SIMPLE_PRODUCT
public static final OperationKind SINGLE_ENTRY
public static final OperationKind PRODUCT_COMPOSITION
public static final OperationKind COMPOSED_PRODUCT
public static final OperationKind OVERHEADS
public static final OperationKind SHIPPING_FEE
public static final OperationKind PAYMENT_FEE
public static final OperationKind TR_BALANCE
public static final OperationKind COMMISSION
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 © 2020. All rights reserved.