public enum PINRequestType extends Enum<PINRequestType>
Java class for PINRequestType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="PINRequestType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="PINVerify"/>
<enumeration value="PINVerifyOnly"/>
<enumeration value="PINEnter"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
PIN_ENTER
The PIN is entered by the Cardholder, encrypted by the POI, and provided as a result.
|
PIN_VERIFY
The PIN Entering and Verify.
|
PIN_VERIFY_ONLY
The PIN Verify only, the PIN is entered before and the PIN Block (encrypted PIN) is provided.
|
| Modifier and Type | Method and Description |
|---|---|
static PINRequestType |
fromValue(String v)
From value pin request type.
|
String |
value()
Value string.
|
static PINRequestType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PINRequestType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PINRequestType PIN_VERIFY
public static final PINRequestType PIN_VERIFY_ONLY
public static final PINRequestType PIN_ENTER
public static PINRequestType[] values()
for (PINRequestType c : PINRequestType.values()) System.out.println(c);
public static PINRequestType 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 nullpublic String value()
public static PINRequestType fromValue(String v)
v - the vCopyright © 2022. All rights reserved.