public enum FinancialTransactionTypeClassification extends java.lang.Enum<FinancialTransactionTypeClassification> implements ICRMLookupEnum
Enum Constant and Description |
---|
CREDIT_NOTE |
INVOICE |
INVOICE_CANCEL |
PAYMENT |
PAYMENT_CANCEL |
REFUND |
WRITEOFF |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getLabel() |
static FinancialTransactionTypeClassification |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FinancialTransactionTypeClassification[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FinancialTransactionTypeClassification INVOICE
public static final FinancialTransactionTypeClassification INVOICE_CANCEL
public static final FinancialTransactionTypeClassification CREDIT_NOTE
public static final FinancialTransactionTypeClassification PAYMENT
public static final FinancialTransactionTypeClassification PAYMENT_CANCEL
public static final FinancialTransactionTypeClassification REFUND
public static final FinancialTransactionTypeClassification WRITEOFF
public static FinancialTransactionTypeClassification[] values()
for (FinancialTransactionTypeClassification c : FinancialTransactionTypeClassification.values()) System.out.println(c);
public static FinancialTransactionTypeClassification 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 nullpublic java.lang.String getLabel()
getLabel
in interface ICRMLookupEnum