public enum OperationKind extends Enum<OperationKind>
Java class for operationKind.
The following schema fragment specifies the expected content contained within this class.
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 |
fromValue(String v) |
String |
value() |
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 nullpublic String value()
public static OperationKind fromValue(String v)
Copyright © 2021. All rights reserved.