Enum Class CardSlotNo

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

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

    • CUSTOMER_CONTACTLESS_READER

      public static final CardSlotNo CUSTOMER_CONTACTLESS_READER
    • CUSTOMER_CARD_READER

      public static final CardSlotNo CUSTOMER_CARD_READER
    • SAM_SLOT_1

      public static final CardSlotNo SAM_SLOT_1
    • SAM_SLOT_2

      public static final CardSlotNo SAM_SLOT_2
    • SAM_SLOT_3

      public static final CardSlotNo SAM_SLOT_3
    • SAM_SLOT_4

      public static final CardSlotNo SAM_SLOT_4
    • UNKNOWN

      public static final CardSlotNo UNKNOWN
  • Field Details

    • value

      private final String value
  • Constructor Details

    • CardSlotNo

      private CardSlotNo(String value)
  • Method Details

    • values

      public static CardSlotNo[] 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 CardSlotNo 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 CardSlotNo findByValue(String value)