public enum SKDMethod extends java.lang.Enum<SKDMethod>
Enum Constant and Description |
---|
AEPIS_V40
American Express
|
EMV_CSKD
EMV Common Session Key Derivation Method
Described in EMV v4.2 Book 2 - June 2008, Annex A1.3
|
EMV2000_SKM
EMV2000 Session Key Method
Described in EMV 2000 v4.0 Book 2 - December 2000, Annex A1.3
|
MCHIP
MasterCard Proprietary SKD method
|
VSDC
Visa Smart Debit/Credit or UKIS in England
Described in Visa Integrated Circuit Card Specification (VIS) Version 1.5 - May 2009, section B.4 |
Modifier and Type | Method and Description |
---|---|
static SKDMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SKDMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SKDMethod VSDC
public static final SKDMethod MCHIP
public static final SKDMethod AEPIS_V40
public static final SKDMethod EMV_CSKD
public static final SKDMethod EMV2000_SKM
public static SKDMethod[] values()
for (SKDMethod c : SKDMethod.values()) System.out.println(c);
public static SKDMethod 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