public enum CardMetadataSourceType extends java.lang.Enum<CardMetadataSourceType>
| Modifier and Type | Method and Description |
|---|---|
static CardMetadataSourceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CardMetadataSourceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="bin") public static final CardMetadataSourceType BIN
@SerializedName(value="card") public static final CardMetadataSourceType CARD
@SerializedName(value="token") public static final CardMetadataSourceType TOKEN
@SerializedName(value="id") public static final CardMetadataSourceType ID
public static CardMetadataSourceType[] values()
for (CardMetadataSourceType c : CardMetadataSourceType.values()) System.out.println(c);
public static CardMetadataSourceType 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