com.pax.dal.entity

Enum EDetectMode

  • java.lang.Object
    • java.lang.Enum<EDetectMode>
      • com.pax.dal.entity.EDetectMode
  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<EDetectMode>


    public enum EDetectMode
    extends java.lang.Enum<EDetectMode>
    射频卡检测模式定义
    picc detect mode
    • Enum Constant Summary

      Enum Constants 
      Enum Constant and Description
      EMV_AB
      搜寻A型卡和B型卡一次;此模式为EMV寻卡模式,通常使用该模式;
      Detect type A card once, and detect type B card once; This is EMV Detect Mode,use this mode for usual
      ISO14443_AB
      搜寻A型卡和B型卡一次, 此模式适用于需要增强多卡检测功能的场合。 该模式是符合ISO14443规范的寻卡模式;
      Detect type A card for once, and detect type B card for once; This mode is used to tighten the function for mutiple cards detecting.
      ONLY_A
      只搜寻A型卡一次;
      Only detect type A card for once
      ONLY_B
      只搜寻B型卡一次;
      Only detect type B card for once
      ONLY_M
      只搜寻m1卡一次;
      Only detect type M1 card for once
    • Method Summary

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

      • ISO14443_AB

        public static final EDetectMode ISO14443_AB
        搜寻A型卡和B型卡一次, 此模式适用于需要增强多卡检测功能的场合。 该模式是符合ISO14443规范的寻卡模式;
        Detect type A card for once, and detect type B card for once; This mode is used to tighten the function for mutiple cards detecting. And it conforms to the detect mode of ISO14443 Standard
      • EMV_AB

        public static final EDetectMode EMV_AB
        搜寻A型卡和B型卡一次;此模式为EMV寻卡模式,通常使用该模式;
        Detect type A card once, and detect type B card once; This is EMV Detect Mode,use this mode for usual
      • ONLY_A

        public static final EDetectMode ONLY_A
        只搜寻A型卡一次;
        Only detect type A card for once
      • ONLY_B

        public static final EDetectMode ONLY_B
        只搜寻B型卡一次;
        Only detect type B card for once
      • ONLY_M

        public static final EDetectMode ONLY_M
        只搜寻m1卡一次;
        Only detect type M1 card for once
    • Method Detail

      • values

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

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