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_VERAndroid固件版本Android Firmware VersionBIOS_VERBoot版本号(从1开始递增)Boot Version(ascending from 1)CSN客户序列号customer serial numberEXTB_CFG拓展板配置信息extended PCB configuration informationMAGB_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 ModelMON_VER监控主版本号(从1开始递增);监控次版本号(从0开始递增)monitor major version(ascending from 1);monitor minor version(ascending from 0)PORTB_CFG接口板配置信息interface PCB configuration informationRF_TYPE射频卡芯片类型rf chip typeRPC_VERRPC主版本号(1开始递增),RPC次版本号(0开始递增)rpc app major version number (ascending from 1);rpc app minor version number (ascending from 0)SN终端序列号Terminal Serial NumberSP_VERMonitor版本Monitor VersionTERMINAL_MODEL终端型号Terminal Type
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method and Description static ETermInfoKeyvalueOf(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.
-
-
-
Enum Constant Detail
-
SN
public static final ETermInfoKey SN
终端序列号Terminal Serial Number
-
MODEL
public static final ETermInfoKey MODEL
终端类型(大写)Terminal Model(upper case)
-
SP_VER
public static final ETermInfoKey SP_VER
Monitor版本Monitor Version
-
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.)
-
RF_TYPE
public static final ETermInfoKey RF_TYPE
射频卡芯片类型rf chip type
-
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
-
MODEL_ORIG
public static final ETermInfoKey MODEL_ORIG
终端类型Terminal Model
-
TERMINAL_MODEL
public static final ETermInfoKey TERMINAL_MODEL
终端型号Terminal Type
-
-
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 namejava.lang.NullPointerException- if the argument is null
-
-