public enum MandateStatus extends java.lang.Enum<MandateStatus>
| Enum Constant and Description |
|---|
ACTIVE
The mandate is active and has been accepted by the banks and/or successfully used in a payment.
|
CREATED
The mandate has been created.
|
EXPIRED
The mandate has expired and cannot be used anymore for Payins.
|
FAILED
The mandate has failed for a variety of reasons and is no longer available for payments.
|
NotSpecified
Not specified.
|
SUBMITTED
The mandate has been submitted to the banks and you can now do payments with this mandate.
|
| Modifier and Type | Method and Description |
|---|---|
static MandateStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MandateStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MandateStatus NotSpecified
public static final MandateStatus CREATED
public static final MandateStatus SUBMITTED
public static final MandateStatus ACTIVE
public static final MandateStatus FAILED
public static final MandateStatus EXPIRED
public static MandateStatus[] values()
for (MandateStatus c : MandateStatus.values()) System.out.println(c);
public static MandateStatus 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