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