| Enum Constant and Description |
|---|
AMEX
AMEX card type.
|
BCMC
BCMC card type.
|
CB_VISA_MASTERCARD
CB VISA MASTERCARD card type.
|
DINERS
DINERS card type.
|
IDEAL
IDEAL card type.
|
MAESTRO
MAESTRO card type.
|
MASTERPASS
MASTERPASS card type.
|
NotSpecified
Not specified.
|
P24
P24 (Przelewy24) card type.
|
PAYLIB
PAYLIB card type.
|
| Modifier and Type | Method and Description |
|---|---|
static CardType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CardType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CardType NotSpecified
public static final CardType CB_VISA_MASTERCARD
public static final CardType AMEX
public static final CardType DINERS
public static final CardType MASTERPASS
public static final CardType MAESTRO
public static final CardType P24
public static final CardType IDEAL
public static final CardType BCMC
public static final CardType PAYLIB
public static CardType[] values()
for (CardType c : CardType.values()) System.out.println(c);
public static CardType 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