Enum Class RequestType

java.lang.Object
java.lang.Enum<RequestType>
eu.ccvlab.mapi.core.RequestType
All Implemented Interfaces:
Serializable, Comparable<RequestType>, Constable

public enum RequestType extends Enum<RequestType>
  • Enum Constant Details

    • CARD_PAYMENT

      public static final RequestType CARD_PAYMENT
    • PAYMENT_REFUND

      public static final RequestType PAYMENT_REFUND
    • PAYMENT_REVERSAL

      public static final RequestType PAYMENT_REVERSAL
    • CARD_PREAUTHORIZATION

      public static final RequestType CARD_PREAUTHORIZATION
    • CARD_EXTENDED_PREAUTHORIZATION

      public static final RequestType CARD_EXTENDED_PREAUTHORIZATION
    • FINANCIAL_ADVICE

      public static final RequestType FINANCIAL_ADVICE
    • EXTENDED_FINANCIAL_ADVICE

      public static final RequestType EXTENDED_FINANCIAL_ADVICE
    • TICKET_REPRINT

      public static final RequestType TICKET_REPRINT
    • REPEAT_LAST_MESSAGE

      public static final RequestType REPEAT_LAST_MESSAGE
    • LOGIN

      public static final RequestType LOGIN
    • ABORT_REQUEST

      public static final RequestType ABORT_REQUEST
    • RECONCILIATION_WITH_CLOSURE

      public static final RequestType RECONCILIATION_WITH_CLOSURE
    • PARTIAL_RECONCILIATION_WITH_CLOSURE

      public static final RequestType PARTIAL_RECONCILIATION_WITH_CLOSURE
    • TICKET_REPRINT_RECONCILIATION_WITH_CLOSURE

      public static final RequestType TICKET_REPRINT_RECONCILIATION_WITH_CLOSURE
    • RECONCILIATION

      public static final RequestType RECONCILIATION
    • INITIALISATION

      public static final RequestType INITIALISATION
    • CARD_READ

      public static final RequestType CARD_READ
    • STATUS_QUERY

      public static final RequestType STATUS_QUERY
    • OUTPUT

      public static final RequestType OUTPUT
    • ADMINISTRATION

      public static final RequestType ADMINISTRATION
    • INPUT

      public static final RequestType INPUT
    • SERVICE_MENU

      public static final RequestType SERVICE_MENU
    • DISPENSER

      public static final RequestType DISPENSER
    • DIAGNOSIS

      public static final RequestType DIAGNOSIS
    • EMV_DIAGNOSIS

      public static final RequestType EMV_DIAGNOSIS
    • CONFIGURATION_DIAGNOSIS

      public static final RequestType CONFIGURATION_DIAGNOSIS
    • GET_STATUS

      public static final RequestType GET_STATUS
    • START_MENU

      public static final RequestType START_MENU
    • CARD_DETECTION

      public static final RequestType CARD_DETECTION
    • CARD_VALIDATION

      public static final RequestType CARD_VALIDATION
    • CARD_PRE_AUTHORISATION

      public static final RequestType CARD_PRE_AUTHORISATION
    • CARD_FINANCIAL_ADVICE

      public static final RequestType CARD_FINANCIAL_ADVICE
    • CARD_RESERVATION

      public static final RequestType CARD_RESERVATION
    • CARD_PAYMENT_AFTER_RESERVATION

      public static final RequestType CARD_PAYMENT_AFTER_RESERVATION
    • GET_CARD_CIRCUITS

      public static final RequestType GET_CARD_CIRCUITS
    • AUTHORISATION_BY_VOICE

      public static final RequestType AUTHORISATION_BY_VOICE
    • ONLINE_AGENT

      public static final RequestType ONLINE_AGENT
    • FACTORY_RESET

      public static final RequestType FACTORY_RESET
    • CHECK_PASSWORD

      public static final RequestType CHECK_PASSWORD
    • ELME_VERSION_INFO

      public static final RequestType ELME_VERSION_INFO
    • GIFT_CARD_BALANCE

      public static final RequestType GIFT_CARD_BALANCE
    • GIFT_CARD_ACTIVATION

      public static final RequestType GIFT_CARD_ACTIVATION
    • ACCOUNT_STATUS_QUERY

      public static final RequestType ACCOUNT_STATUS_QUERY
    • ACTIVATE_CARD_READER

      public static final RequestType ACTIVATE_CARD_READER
    • BATCH_TOTAL

      public static final RequestType BATCH_TOTAL
    • EXTENDED_PRE_AUTHORISATION

      public static final RequestType EXTENDED_PRE_AUTHORISATION
    • LINE_DIAGNOSIS

      public static final RequestType LINE_DIAGNOSIS
    • SEND_OFFLINE_TRANSACTIONS

      public static final RequestType SEND_OFFLINE_TRANSACTIONS
    • STORE_VALUE_IN_CARD

      public static final RequestType STORE_VALUE_IN_CARD
    • TIP

      public static final RequestType TIP
    • CLOSE_DAY

      public static final RequestType CLOSE_DAY
    • ACTIVATE_TERMINAL

      public static final RequestType ACTIVATE_TERMINAL
    • STARTUP

      public static final RequestType STARTUP
    • ACCOUNT_VERIFICATION

      public static final RequestType ACCOUNT_VERIFICATION
    • EVENT

      public static final RequestType EVENT
    • SHOW_SALES

      public static final RequestType SHOW_SALES
  • Field Details

    • value

      private final String value
  • Constructor Details

    • RequestType

      private RequestType(String value)
  • Method Details

    • values

      public static RequestType[] 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 RequestType 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
    • findByValue

      public static Optional<RequestType> findByValue(String value)
    • toString

      public String toString()
      Overrides:
      toString in class Enum<RequestType>