Package com.adyen.model.nexo
Enum ForceEntryModeType
- java.lang.Object
-
- java.lang.Enum<ForceEntryModeType>
-
- com.adyen.model.nexo.ForceEntryModeType
-
- All Implemented Interfaces:
Serializable,Comparable<ForceEntryModeType>
public enum ForceEntryModeType extends Enum<ForceEntryModeType>
Java class for ForceEntryModeType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ForceEntryModeType"> <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="CheckReader"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHECK_READERCheck ReaderCONTACTLESSContactless card reader conform to ISO 14443FILEAccount data on fileICCContact ICC (asynchronous)KEYEDManual key entryMAG_STRIPEMagnetic stripeMANUALReading of embossing or OCR of printed data either at time of transaction or after the event.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 ForceEntryModeTypefromValue(String v)From value force entry mode type.Stringvalue()Value string.static ForceEntryModeTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ForceEntryModeType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RFID
public static final ForceEntryModeType RFID
Payment instrument information are taken from RFID
-
KEYED
public static final ForceEntryModeType KEYED
Manual key entry
-
MANUAL
public static final ForceEntryModeType MANUAL
Reading of embossing or OCR of printed data either at time of transaction or after the event.
-
FILE
public static final ForceEntryModeType FILE
Account data on file
-
SCANNED
public static final ForceEntryModeType SCANNED
Scanned by a bar code reader.
-
MAG_STRIPE
public static final ForceEntryModeType MAG_STRIPE
Magnetic stripe
-
ICC
public static final ForceEntryModeType ICC
Contact ICC (asynchronous)
-
SYNCHRONOUS_ICC
public static final ForceEntryModeType SYNCHRONOUS_ICC
Contact ICC (synchronous)
-
TAPPED
public static final ForceEntryModeType TAPPED
Contactless card reader Magnetic Stripe
-
CONTACTLESS
public static final ForceEntryModeType CONTACTLESS
Contactless card reader conform to ISO 14443
-
CHECK_READER
public static final ForceEntryModeType CHECK_READER
Check Reader
-
-
Method Detail
-
values
public static ForceEntryModeType[] 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 (ForceEntryModeType c : ForceEntryModeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ForceEntryModeType 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 ForceEntryModeType fromValue(String v)
From value force entry mode type.- Parameters:
v- the v- Returns:
- the force entry mode type
-
-