public enum UnpaidInvoicesHandling extends Enum<UnpaidInvoicesHandling>
| Enum Constant and Description |
|---|
_UNKNOWN |
NO_ACTION |
SCHEDULE_PAYMENT_COLLECTION |
| Modifier and Type | Method and Description |
|---|---|
static UnpaidInvoicesHandling |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UnpaidInvoicesHandling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnpaidInvoicesHandling NO_ACTION
public static final UnpaidInvoicesHandling SCHEDULE_PAYMENT_COLLECTION
public static final UnpaidInvoicesHandling _UNKNOWN
public static UnpaidInvoicesHandling[] values()
for (UnpaidInvoicesHandling c : UnpaidInvoicesHandling.values()) System.out.println(c);
public static UnpaidInvoicesHandling 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 © 2023 ChargeBee. All rights reserved.