Enum EntryModeType

  • All Implemented Interfaces:
    Serializable, Comparable<EntryModeType>

    public enum EntryModeType
    extends Enum<EntryModeType>

    Java class for EntryModeType.

    The following schema fragment specifies the expected content contained within this class.

     <simpleType name="EntryModeType">
       <restriction base="{http://www.w3.org/2001/XMLSchema}string">
         <enumeration value="RFID"/>
         <enumeration value="Keyed"/>
         <enumeration value="Manual"/>
         <enumeration value="File"/>
         <enumeration value="Scanned"/>
         <enumeration value="MagStripe"/>
         <enumeration value="ICC"/>
         <enumeration value="SynchronousICC"/>
         <enumeration value="Tapped"/>
         <enumeration value="Contactless"/>
         <enumeration value="Mobile"/>
       </restriction>
     </simpleType>
     
    • Enum Constant Detail

      • RFID

        public static final EntryModeType RFID
        Payment instrument information are taken from RFID
      • KEYED

        public static final EntryModeType KEYED
        Manual key entry
      • MANUAL

        public static final EntryModeType MANUAL
        Reading of embossing or OCR of printed data either at time of transaction or after the event.
      • FILE

        public static final EntryModeType FILE
        Account data on file
      • SCANNED

        public static final EntryModeType SCANNED
        Scanned by a bar code reader.
      • MAG_STRIPE

        public static final EntryModeType MAG_STRIPE
        Magnetic stripe card reader.
      • ICC

        public static final EntryModeType ICC
        Contact ICC (asynchronous)
      • SYNCHRONOUS_ICC

        public static final EntryModeType SYNCHRONOUS_ICC
        Contact ICC (synchronous)
      • TAPPED

        public static final EntryModeType TAPPED
        Contactless card reader Magnetic Stripe
      • CONTACTLESS

        public static final EntryModeType CONTACTLESS
        Contactless card reader conform to ISO 14443
    • Method Detail

      • values

        public static EntryModeType[] 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 (EntryModeType c : EntryModeType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static EntryModeType valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • value

        public String value()
        Value string.
        Returns:
        the string
      • fromValue

        public static EntryModeType fromValue​(String v)
        From value entry mode type.
        Parameters:
        v - the v
        Returns:
        the entry mode type