com.pax.dal.entity

Enum EPiccRemoveMode

  • java.lang.Object
    • Enum Constant Summary

      Enum Constants 
      Enum Constant and Description
      EMV
      符合EMV非接规范的移卡模式 复位载波,并执行卡移开检测
      Comply with the remove card mode of EMV non-connected standard Reset carrier, and execute card removed detection.
      HALT
      Deprecated. 
      仅向卡片发送停活指令后就退出;该过程不执行卡移开检测
      HALT, quit after sending halt command to card; no card removed check during this process.
      REMOVE
      Deprecated. 
      向卡片发送停活指令,并执行卡移开检测
      REMOVE, Send halt command to card, and execute card removed detection.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      byte getPiccRemoveMode() 
      static EPiccRemoveMode valueOf(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static EPiccRemoveMode[] 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

      • HALT

        @Deprecated
        public static final EPiccRemoveMode HALT
        Deprecated. 
        仅向卡片发送停活指令后就退出;该过程不执行卡移开检测
        HALT, quit after sending halt command to card; no card removed check during this process.
      • REMOVE

        @Deprecated
        public static final EPiccRemoveMode REMOVE
        Deprecated. 
        向卡片发送停活指令,并执行卡移开检测
        REMOVE, Send halt command to card, and execute card removed detection.
      • EMV

        public static final EPiccRemoveMode EMV
        符合EMV非接规范的移卡模式 复位载波,并执行卡移开检测
        Comply with the remove card mode of EMV non-connected standard Reset carrier, and execute card removed detection.
    • Method Detail

      • values

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

        public static EPiccRemoveMode 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