public enum MKDMethod extends java.lang.Enum<MKDMethod>
| Enum Constant and Description | 
|---|
OPTION_A
Uses PAN, PAN Sequence Number, IMK, Triple DES
 Described in EMV v4.2 Book 2, Annex A1.4.1 
 | 
OPTION_B  | 
| Modifier and Type | Method and Description | 
|---|---|
static MKDMethod | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static MKDMethod[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final MKDMethod OPTION_A
public static final MKDMethod OPTION_B
public static MKDMethod[] values()
for (MKDMethod c : MKDMethod.values()) System.out.println(c);
public static MKDMethod 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