public enum JCSDocType extends java.lang.Enum<JCSDocType>
Enum Constant and Description |
---|
CHARGE_NOTE
A charge note.
|
CREDIT_NOTE
A credit note.
|
CUSTOMER_ORDER
A customer order
|
CUSTOMER_PO
A purchase order issued by a customer
|
PURCHASE_ORDER
A purchase order for a supplier
|
SALE_INVOICE
A sales invoice.
|
SALE_NOTE
A sales note.
|
Modifier and Type | Method and Description |
---|---|
static JCSDocType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JCSDocType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JCSDocType CHARGE_NOTE
public static final JCSDocType CREDIT_NOTE
public static final JCSDocType CUSTOMER_ORDER
public static final JCSDocType CUSTOMER_PO
public static final JCSDocType PURCHASE_ORDER
public static final JCSDocType SALE_INVOICE
public static final JCSDocType SALE_NOTE
public static JCSDocType[] values()
for (JCSDocType c : JCSDocType.values()) System.out.println(c);
public static JCSDocType 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 null