com.pax.dal.entity

Enum EReaderType

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


    public enum EReaderType
    extends java.lang.Enum<EReaderType>
    读卡器定义
    card reader type
    • Enum Constant Summary

      Enum Constants 
      Enum Constant and Description
      DEFAULT 
      ICC
      接触式IC卡读卡器
      ICC
      ICC_PICC
      接触式IC卡读卡器和内置射频读卡器
      ICC & RF
      ICC_PICCEXTERNAL
      接触式IC读卡器和外置射频读卡器
      ICC & external RF
      MAG
      磁条卡读卡器
      MAG
      MAG_ICC
      磁条卡读卡器和接触式IC卡读卡器
      MAG & ICC
      MAG_ICC_PICC
      磁条卡读卡器, 接触式IC卡读卡器和内置射频读卡器
      MAG & ICC & RF
      MAG_ICC_PICCEXTERNAL
      磁条卡读卡器, 接触式IC卡读卡器和外置射频读卡器
      MAG & ICC & external RF
      MAG_PICC
      磁条卡读卡器和内置射频读卡器
      MAG & RF
      MAG_PICCEXTERNAL
      磁条卡读卡器和外置射频读卡器
      MAG & external RF
      PICC
      内置射频读卡器
      RF
      PICCEXTERNAL
      外置射频读卡器
      external RF
    • Method Summary

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

      • values

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

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