public enum MandateScheme extends java.lang.Enum<MandateScheme>
| Enum Constant and Description |
|---|
BACS
BACS scheme.
|
NotSpecified
Not specified.
|
SEPA
SEPA scheme.
|
| Modifier and Type | Method and Description |
|---|---|
static MandateScheme |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MandateScheme[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MandateScheme NotSpecified
public static final MandateScheme SEPA
public static final MandateScheme BACS
public static MandateScheme[] values()
for (MandateScheme c : MandateScheme.values()) System.out.println(c);
public static MandateScheme 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