com.pax.dal.entity

Enum ETermInfoKey

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


    public enum ETermInfoKey
    extends java.lang.Enum<ETermInfoKey>
    终端信息定义
    Terminal info key
    • Enum Constant Summary

      Enum Constants 
      Enum Constant and Description
      AP_VER
      Android固件版本
      Android Firmware Version
      BIOS_VER
      Boot版本号(从1开始递增)
      Boot Version(ascending from 1)
      CSN
      客户序列号
      customer serial number
      EXTB_CFG
      拓展板配置信息
      extended PCB configuration information
      MAGB_CFG
      磁卡阅读器配置信息
      magcard reader PCB configuration information (Please see 'instruction' for S90 usage.)
      MAINB_VER
      主板版本号
      main PCB hardware version(reter to hardware version)
      MODEL
      终端类型(大写)
      Terminal Model(upper case)
      MODEL_ORIG
      终端类型
      Terminal Model
      MON_VER
      监控主版本号(从1开始递增);监控次版本号(从0开始递增)
      monitor major version(ascending from 1);monitor minor version(ascending from 0)
      PORTB_CFG
      接口板配置信息
      interface PCB configuration information
      RF_TYPE
      射频卡芯片类型
      rf chip type
      RPC_VER
      RPC主版本号(1开始递增),RPC次版本号(0开始递增)
      rpc app major version number (ascending from 1);rpc app minor version number (ascending from 0)
      SN
      终端序列号
      Terminal Serial Number
      SP_VER
      Monitor版本
      Monitor Version
      TERMINAL_MODEL
      终端型号
      Terminal Type
    • Method Summary

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

      • SN

        public static final ETermInfoKey SN
        终端序列号
        Terminal Serial Number
      • MODEL

        public static final ETermInfoKey MODEL
        终端类型(大写)
        Terminal Model(upper case)
      • AP_VER

        public static final ETermInfoKey AP_VER
        Android固件版本
        Android Firmware Version
      • BIOS_VER

        public static final ETermInfoKey BIOS_VER
        Boot版本号(从1开始递增)
        Boot Version(ascending from 1)
      • MON_VER

        public static final ETermInfoKey MON_VER
        监控主版本号(从1开始递增);监控次版本号(从0开始递增)
        monitor major version(ascending from 1);monitor minor version(ascending from 0)
      • MAINB_VER

        public static final ETermInfoKey MAINB_VER
        主板版本号
        main PCB hardware version(reter to hardware version)
      • PORTB_CFG

        public static final ETermInfoKey PORTB_CFG
        接口板配置信息
        interface PCB configuration information
      • EXTB_CFG

        public static final ETermInfoKey EXTB_CFG
        拓展板配置信息
        extended PCB configuration information
      • MAGB_CFG

        public static final ETermInfoKey MAGB_CFG
        磁卡阅读器配置信息
        magcard reader PCB configuration information (Please see 'instruction' for S90 usage.)
      • RPC_VER

        public static final ETermInfoKey RPC_VER
        RPC主版本号(1开始递增),RPC次版本号(0开始递增)
        rpc app major version number (ascending from 1);rpc app minor version number (ascending from 0)
      • CSN

        public static final ETermInfoKey CSN
        客户序列号
        customer serial number
    • Method Detail

      • values

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

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