public enum RecurringPaymentStatus extends java.lang.Enum<RecurringPaymentStatus>
| Enum Constant and Description |
|---|
CANCELED
The recurring payment was canceled
|
CLOSED
The recurring payment is closed by having processed all programmed occurrences
|
OPEN
The recurring payment is open, and will be processed on due dates
|
| Modifier and Type | Method and Description |
|---|---|
static RecurringPaymentStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RecurringPaymentStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecurringPaymentStatus OPEN
public static final RecurringPaymentStatus CLOSED
public static final RecurringPaymentStatus CANCELED
public static RecurringPaymentStatus[] values()
for (RecurringPaymentStatus c : RecurringPaymentStatus.values()) System.out.println(c);
public static RecurringPaymentStatus 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