Enum Class TerminalTechnology
- All Implemented Interfaces:
Serializable,Comparable<TerminalTechnology>,Constable
The type of technology supported by the Terminal, It is the type of transaction requested by the terminal.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe terminal supports an EMV (Contactless)The terminal supports an Magstripe Emulation (Contactless)The terminal supports an EMV DSRP (Remote Payment)The terminal supports an UCAF DSRP (Remote Payment)The terminal supports an QR Code (QR Payment) -
Method Summary
Modifier and TypeMethodDescriptionstatic TerminalTechnologyget(byte value) byte[]getCode()toString()String representation of the Enum.static TerminalTechnologyReturns the enum constant of this class with the specified name.static TerminalTechnology[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CONTACTLESS_EMV
The terminal supports an EMV (Contactless) -
CONTACTLESS_MAGSTRIPE
The terminal supports an Magstripe Emulation (Contactless) -
DSRP_EMV
The terminal supports an EMV DSRP (Remote Payment) -
DSRP_UCAF
The terminal supports an UCAF DSRP (Remote Payment) -
QRC
The terminal supports an QR Code (QR Payment)
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
getCode
public byte[] getCode() -
get
-
toString
String representation of the Enum.- Overrides:
toStringin classEnum<TerminalTechnology>- Returns:
- String representation of the Enum.
-