public enum PINRequestTypeEnumeration extends Enum<PINRequestTypeEnumeration>
Java class for PINRequestTypeEnumeration.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="PINRequestTypeEnumeration">
<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 PINRequestTypeEnumeration |
fromValue(String v) |
String |
value() |
static PINRequestTypeEnumeration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PINRequestTypeEnumeration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PINRequestTypeEnumeration PIN_VERIFY
public static final PINRequestTypeEnumeration PIN_VERIFY_ONLY
public static final PINRequestTypeEnumeration PIN_ENTER
public static PINRequestTypeEnumeration[] values()
for (PINRequestTypeEnumeration c : PINRequestTypeEnumeration.values()) System.out.println(c);
public static PINRequestTypeEnumeration 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 PINRequestTypeEnumeration fromValue(String v)
Copyright © 2018. All rights reserved.