public static enum CreditCardTypeConverter.Type extends java.lang.Enum<CreditCardTypeConverter.Type>
Enum Constant and Description |
---|
AMEX |
DinersClub |
Discover |
enRoute |
JCB |
MasterCard |
VISA |
Modifier and Type | Method and Description |
---|---|
static CreditCardTypeConverter.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CreditCardTypeConverter.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CreditCardTypeConverter.Type AMEX
public static final CreditCardTypeConverter.Type DinersClub
public static final CreditCardTypeConverter.Type Discover
public static final CreditCardTypeConverter.Type enRoute
public static final CreditCardTypeConverter.Type JCB
public static final CreditCardTypeConverter.Type MasterCard
public static final CreditCardTypeConverter.Type VISA
public static CreditCardTypeConverter.Type[] values()
for (CreditCardTypeConverter.Type c : CreditCardTypeConverter.Type.values()) System.out.println(c);
public static CreditCardTypeConverter.Type 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? Copyright 2005-2006, Stripes Development Team.