Package com.adyen.model.nexo
Enum EntryModeType
- java.lang.Object
-
- java.lang.Enum<EntryModeType>
-
- com.adyen.model.nexo.EntryModeType
-
- All Implemented Interfaces:
Serializable,Comparable<EntryModeType>
public enum EntryModeType extends Enum<EntryModeType>
Java class for EntryModeType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="EntryModeType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="RFID"/> <enumeration value="Keyed"/> <enumeration value="Manual"/> <enumeration value="File"/> <enumeration value="Scanned"/> <enumeration value="MagStripe"/> <enumeration value="ICC"/> <enumeration value="SynchronousICC"/> <enumeration value="Tapped"/> <enumeration value="Contactless"/> <enumeration value="Mobile"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTACTLESSContactless card reader conform to ISO 14443FILEAccount data on fileICCContact ICC (asynchronous)KEYEDManual key entryMAG_STRIPEMagnetic stripe card reader.MANUALReading of embossing or OCR of printed data either at time of transaction or after the event.MOBILEMobile phone.RFIDPayment instrument information are taken from RFIDSCANNEDScanned by a bar code reader.SYNCHRONOUS_ICCContact ICC (synchronous)TAPPEDContactless card reader Magnetic Stripe
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EntryModeTypefromValue(String v)From value entry mode type.Stringvalue()Value string.static EntryModeTypevalueOf(String name)Returns the enum constant of this type with the specified name.static EntryModeType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RFID
public static final EntryModeType RFID
Payment instrument information are taken from RFID
-
KEYED
public static final EntryModeType KEYED
Manual key entry
-
MANUAL
public static final EntryModeType MANUAL
Reading of embossing or OCR of printed data either at time of transaction or after the event.
-
FILE
public static final EntryModeType FILE
Account data on file
-
SCANNED
public static final EntryModeType SCANNED
Scanned by a bar code reader.
-
MAG_STRIPE
public static final EntryModeType MAG_STRIPE
Magnetic stripe card reader.
-
ICC
public static final EntryModeType ICC
Contact ICC (asynchronous)
-
SYNCHRONOUS_ICC
public static final EntryModeType SYNCHRONOUS_ICC
Contact ICC (synchronous)
-
TAPPED
public static final EntryModeType TAPPED
Contactless card reader Magnetic Stripe
-
CONTACTLESS
public static final EntryModeType CONTACTLESS
Contactless card reader conform to ISO 14443
-
MOBILE
public static final EntryModeType MOBILE
Mobile phone.
-
-
Method Detail
-
values
public static EntryModeType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EntryModeType c : EntryModeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EntryModeType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
value
public String value()
Value string.- Returns:
- the string
-
fromValue
public static EntryModeType fromValue(String v)
From value entry mode type.- Parameters:
v- the v- Returns:
- the entry mode type
-
-