public enum ScheduledPaymentStatus extends java.lang.Enum<ScheduledPaymentStatus>
| Enum Constant and Description |
|---|
BLOCKED
The scheduled payment is blocked, preventing installments from being automatically processed
|
CANCELED
The scheduled payment was canceled while open by the payer
|
CLOSED
The scheduled payment has all installments as processed
|
OPEN
The scheduled payment is still open
|
| Modifier and Type | Method and Description |
|---|---|
static ScheduledPaymentStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScheduledPaymentStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScheduledPaymentStatus OPEN
public static final ScheduledPaymentStatus CLOSED
public static final ScheduledPaymentStatus BLOCKED
public static final ScheduledPaymentStatus CANCELED
public static ScheduledPaymentStatus[] values()
for (ScheduledPaymentStatus c : ScheduledPaymentStatus.values()) System.out.println(c);
public static ScheduledPaymentStatus 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