public enum Cvm extends Enum<Cvm>
Specifies which cardholder verification method has been performed during the transaction.
Specification: retail.
Enum Constant and Description |
---|
NO_CVM
No CVM required.
|
ON_DEVICE
On device cvm.
|
PIN
PIN verification
|
PIN_SIGNATURE
PIN verification and signature (paper).
|
SIGNATURE
Signature (paper).
|
Modifier and Type | Method and Description |
---|---|
static Cvm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Cvm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Cvm PIN
PIN verification
Specification: retail.
public static final Cvm PIN_SIGNATURE
PIN verification and signature (paper).
Specification: retail.
public static final Cvm SIGNATURE
Signature (paper).
Specification: retail.
public static final Cvm ON_DEVICE
On device cvm.
Specification: retail.
public static final Cvm NO_CVM
No CVM required.
Specification: retail.
public static Cvm[] values()
for (Cvm c : Cvm.values()) System.out.println(c);
public static Cvm valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null