com.pax.dal.entity

Enum EDUKPTPinMode

  • java.lang.Object
    • Enum Constant Summary

      Enum Constants 
      Enum Constant and Description
      AS2805
      AS2805 zero length PIN block mode。不会要求输入PIN,不会弹出输PIN窗口,expPinLen必须为0。KSN不自动加1。
      AS2805 zero length PIN block mode。The pin input window will not pop up.
      AS2805_INC
      AS2805 zero length PIN block mode。不会要求输入PIN,不会弹出输PIN窗口,expPinLen必须为0。KSN 自动加1。
      AS2805 zero length PIN block mode。The pin input window will not pop up.
      HKEPS
      HK EPS格式 KSN不自动加1
      HKEPS KSN won't auto-add 1
      HKEPS_INC
      HK EPS格式 KSN自动加1
      HK -format EPS, KSN auto-add 1
      ISO9564_0
      ISO9564 格式0 KSN不自动加1
      ISO9564 format 0 KSN won't auto-add 1
      ISO9564_0_INC
      ISO9564 格式0 KSN自动加1
      ISO9564 format 0, KSN auto-add 1
      ISO9564_1
      ISO9564 格式1 KSN不自动加1
      ISO9564 format 1 KSN won't auto-add 1
      ISO9564_1_INC
      ISO9564 格式1 KSN自动加1
      ISO9564 format 1, KSN auto-add 1
      ISO9564_2
      ISO9564 格式3 KSN不自动加1
      ISO9564 format 3 KSN won't auto-add 1
      ISO9564_2_INC
      ISO9564 格式3 KSN自动加1
      ISO9564 format 3, KSN auto-add 1
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      byte getDUKPTPinMode() 
      static EDUKPTPinMode valueOf(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static EDUKPTPinMode[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • HKEPS_INC

        public static final EDUKPTPinMode HKEPS_INC
        HK EPS格式 KSN自动加1
        HK -format EPS, KSN auto-add 1
      • ISO9564_0

        public static final EDUKPTPinMode ISO9564_0
        ISO9564 格式0 KSN不自动加1
        ISO9564 format 0 KSN won't auto-add 1
      • ISO9564_1

        public static final EDUKPTPinMode ISO9564_1
        ISO9564 格式1 KSN不自动加1
        ISO9564 format 1 KSN won't auto-add 1
      • ISO9564_2

        public static final EDUKPTPinMode ISO9564_2
        ISO9564 格式3 KSN不自动加1
        ISO9564 format 3 KSN won't auto-add 1
      • HKEPS

        public static final EDUKPTPinMode HKEPS
        HK EPS格式 KSN不自动加1
        HKEPS KSN won't auto-add 1
      • AS2805_INC

        public static final EDUKPTPinMode AS2805_INC
        AS2805 zero length PIN block mode。不会要求输入PIN,不会弹出输PIN窗口,expPinLen必须为0。KSN 自动加1。
        AS2805 zero length PIN block mode。The pin input window will not pop up. expPinLen must be 0. KSN auto-add 1.
        Since:
        V3.19.00
      • AS2805

        public static final EDUKPTPinMode AS2805
        AS2805 zero length PIN block mode。不会要求输入PIN,不会弹出输PIN窗口,expPinLen必须为0。KSN不自动加1。
        AS2805 zero length PIN block mode。The pin input window will not pop up. expPinLen must be 0. KSN won't auto-add 1.
        Since:
        V3.19.00
    • Method Detail

      • values

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

        public static EDUKPTPinMode 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 name
        java.lang.NullPointerException - if the argument is null