public enum PaymentAccountTypeId extends java.lang.Enum<PaymentAccountTypeId>
| Enum Constant and Description |
|---|
AccountsPayable |
AccountsReceivable |
AccountsReceivableAccountsPayable |
None |
| Modifier and Type | Method and Description |
|---|---|
static PaymentAccountTypeId |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PaymentAccountTypeId[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaymentAccountTypeId None
public static final PaymentAccountTypeId AccountsReceivableAccountsPayable
public static final PaymentAccountTypeId AccountsReceivable
public static final PaymentAccountTypeId AccountsPayable
public static PaymentAccountTypeId[] values()
for (PaymentAccountTypeId c : PaymentAccountTypeId.values()) System.out.println(c);
public static PaymentAccountTypeId 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