public enum VerificationMethod extends java.lang.Enum<VerificationMethod>
Enum Constant and Description |
---|
CONSUMER_DEVICE
Cardholder was verified by a mobile device, such as a phone.
|
CVM_FAILED
Cardholder verification was not successful.
|
NO_CVM
Cardholder verification has been explicitly skipped.
|
NONE
Cardholder verification has not been performed.
|
OFFLINE_PIN
Cardholder was verified using a PIN checked by the card.
|
ONLINE_PIN
Cardholder was verified using a PIN checked online.
|
PIN_AND_SIGNATURE
Cardholder was verified by a combination of offline PIN and signature.
|
SIGNATURE
Cardholder was verified by signature.
|
Modifier and Type | Method and Description |
---|---|
char |
getCharacter() |
static VerificationMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VerificationMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerificationMethod NONE
public static final VerificationMethod ONLINE_PIN
public static final VerificationMethod OFFLINE_PIN
public static final VerificationMethod SIGNATURE
public static final VerificationMethod NO_CVM
public static final VerificationMethod CVM_FAILED
public static final VerificationMethod CONSUMER_DEVICE
public static final VerificationMethod PIN_AND_SIGNATURE
public static VerificationMethod[] values()
for (VerificationMethod c : VerificationMethod.values()) System.out.println(c);
public static VerificationMethod 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 char getCharacter()