public enum RecurringPaymentOccurrenceStatus extends java.lang.Enum<RecurringPaymentOccurrenceStatus>
| Enum Constant and Description |
|---|
FAILED
The occurrence has failed
|
PROCESSED
The occurrence was successfully processed, and a transfer was generated
|
| Modifier and Type | Method and Description |
|---|---|
static RecurringPaymentOccurrenceStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RecurringPaymentOccurrenceStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecurringPaymentOccurrenceStatus PROCESSED
public static final RecurringPaymentOccurrenceStatus FAILED
public static RecurringPaymentOccurrenceStatus[] values()
for (RecurringPaymentOccurrenceStatus c : RecurringPaymentOccurrenceStatus.values()) System.out.println(c);
public static RecurringPaymentOccurrenceStatus 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