public enum CreditCardTypeType extends java.lang.Enum<CreditCardTypeType>
Java class for CreditCardTypeType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="CreditCardTypeType"> <restriction base="{http://www.w3.org/2001/XMLSchema}token"> <enumeration value="Visa"/> <enumeration value="MasterCard"/> <enumeration value="Discover"/> <enumeration value="Amex"/> <enumeration value="Switch"/> <enumeration value="Solo"/> <enumeration value="Maestro"/> </restriction> </simpleType>
Enum Constant and Description |
---|
AMEX |
DISCOVER |
MAESTRO |
MASTER_CARD |
SOLO |
SWITCH |
VISA |
Modifier and Type | Method and Description |
---|---|
static CreditCardTypeType |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static CreditCardTypeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CreditCardTypeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CreditCardTypeType VISA
public static final CreditCardTypeType MASTER_CARD
public static final CreditCardTypeType DISCOVER
public static final CreditCardTypeType AMEX
public static final CreditCardTypeType SWITCH
public static final CreditCardTypeType SOLO
public static final CreditCardTypeType MAESTRO
public static CreditCardTypeType[] values()
for (CreditCardTypeType c : CreditCardTypeType.values()) System.out.println(c);
public static CreditCardTypeType 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 nullpublic java.lang.String value()
public static CreditCardTypeType fromValue(java.lang.String v)
stSoftware Copyright © 2001-2014 stSoftware All Rights Reserved.