public enum DebitCreditSelection extends java.lang.Enum<DebitCreditSelection>
Enum Constant and Description |
---|
CREDIT
Credit was selected.
|
DEBIT
Debit was selected.
|
NONE
The BINPAR for the card did not require a Debit / Credit selection to be made.
|
Modifier and Type | Method and Description |
---|---|
static DebitCreditSelection |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DebitCreditSelection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DebitCreditSelection NONE
public static final DebitCreditSelection DEBIT
public static final DebitCreditSelection CREDIT
public static DebitCreditSelection[] values()
for (DebitCreditSelection c : DebitCreditSelection.values()) System.out.println(c);
public static DebitCreditSelection 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