Enum Class TerminalTechnology

java.lang.Object
java.lang.Enum<TerminalTechnology>
com.gemalto.mfs.mwsdk.payment.engine.TerminalTechnology
All Implemented Interfaces:
Serializable, Comparable<TerminalTechnology>, Constable

public enum TerminalTechnology extends Enum<TerminalTechnology>
The type of technology supported by the Terminal, It is the type of transaction requested by the terminal.
  • Enum Constant Details

    • 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 Details

    • values

      public static TerminalTechnology[] 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

      public static TerminalTechnology valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • getCode

      public byte[] getCode()
    • get

      public static TerminalTechnology get(byte value)
    • toString

      public String toString()
      String representation of the Enum.
      Overrides:
      toString in class Enum<TerminalTechnology>
      Returns:
      String representation of the Enum.