Enum TerminalTechnology
- java.lang.Object
-
- java.lang.Enum<TerminalTechnology>
-
- com.gemalto.mfs.mwsdk.payment.engine.TerminalTechnology
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TerminalTechnology>
public enum TerminalTechnology extends java.lang.Enum<TerminalTechnology>
The type of technology supported by the Terminal, It is the type of transaction requested by the terminal.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description 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 Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TerminalTechnology
get(byte value)
byte[]
getCode()
java.lang.String
toString()
String representation of the Enum.static TerminalTechnology
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TerminalTechnology[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONTACTLESS_EMV
public static final TerminalTechnology CONTACTLESS_EMV
The terminal supports an EMV (Contactless)
-
CONTACTLESS_MAGSTRIPE
public static final TerminalTechnology CONTACTLESS_MAGSTRIPE
The terminal supports an Magstripe Emulation (Contactless)
-
DSRP_EMV
public static final TerminalTechnology DSRP_EMV
The terminal supports an EMV DSRP (Remote Payment)
-
DSRP_UCAF
public static final TerminalTechnology DSRP_UCAF
The terminal supports an UCAF DSRP (Remote Payment)
-
QRC
public static final TerminalTechnology QRC
The terminal supports an QR Code (QR Payment)
-
-
Method Detail
-
values
public static TerminalTechnology[] 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 (TerminalTechnology c : TerminalTechnology.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TerminalTechnology valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getCode
public byte[] getCode()
-
get
public static TerminalTechnology get(byte value)
-
toString
public java.lang.String toString()
String representation of the Enum.- Overrides:
toString
in classjava.lang.Enum<TerminalTechnology>
- Returns:
- String representation of the Enum.
-
-