public enum InvoiceItemType extends Enum<InvoiceItemType>
| Enum Constant and Description |
|---|
CBA_ADJ |
CREDIT_ADJ |
EXTERNAL_CHARGE |
FIXED |
ITEM_ADJ |
RECURRING |
REFUND_ADJ |
REPAIR_ADJ |
TAX |
USAGE |
| Modifier and Type | Method and Description |
|---|---|
static InvoiceItemType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InvoiceItemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InvoiceItemType EXTERNAL_CHARGE
public static final InvoiceItemType FIXED
public static final InvoiceItemType RECURRING
public static final InvoiceItemType REPAIR_ADJ
public static final InvoiceItemType CBA_ADJ
public static final InvoiceItemType CREDIT_ADJ
public static final InvoiceItemType ITEM_ADJ
public static final InvoiceItemType REFUND_ADJ
public static final InvoiceItemType USAGE
public static final InvoiceItemType TAX
public static InvoiceItemType[] values()
for (InvoiceItemType c : InvoiceItemType.values()) System.out.println(c);
public static InvoiceItemType 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 © 2010-2015. All Rights Reserved.