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 DEFAULTICC接触式IC卡读卡器ICCICC_PICC接触式IC卡读卡器和内置射频读卡器ICC & RFICC_PICCEXTERNAL接触式IC读卡器和外置射频读卡器ICC & external RFMAG磁条卡读卡器MAGMAG_ICC磁条卡读卡器和接触式IC卡读卡器MAG & ICCMAG_ICC_PICC磁条卡读卡器, 接触式IC卡读卡器和内置射频读卡器MAG & ICC & RFMAG_ICC_PICCEXTERNAL磁条卡读卡器, 接触式IC卡读卡器和外置射频读卡器MAG & ICC & external RFMAG_PICC磁条卡读卡器和内置射频读卡器MAG & RFMAG_PICCEXTERNAL磁条卡读卡器和外置射频读卡器MAG & external RFPICC内置射频读卡器RFPICCEXTERNAL外置射频读卡器external RF
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method and Description bytegetEReaderType()static EReaderTypevalueOf(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.
-
-
-
Enum Constant Detail
-
MAG
public static final EReaderType MAG
磁条卡读卡器MAG
-
ICC
public static final EReaderType ICC
接触式IC卡读卡器ICC
-
PICC
public static final EReaderType PICC
内置射频读卡器RF
-
PICCEXTERNAL
public static final EReaderType PICCEXTERNAL
外置射频读卡器external RF
-
MAG_ICC
public static final EReaderType MAG_ICC
磁条卡读卡器和接触式IC卡读卡器MAG & ICC
-
MAG_PICC
public static final EReaderType MAG_PICC
磁条卡读卡器和内置射频读卡器MAG & RF
-
MAG_PICCEXTERNAL
public static final EReaderType MAG_PICCEXTERNAL
磁条卡读卡器和外置射频读卡器MAG & external RF
-
ICC_PICC
public static final EReaderType ICC_PICC
接触式IC卡读卡器和内置射频读卡器ICC & RF
-
ICC_PICCEXTERNAL
public static final EReaderType ICC_PICCEXTERNAL
接触式IC读卡器和外置射频读卡器ICC & external RF
-
MAG_ICC_PICC
public static final EReaderType MAG_ICC_PICC
磁条卡读卡器, 接触式IC卡读卡器和内置射频读卡器MAG & ICC & RF
-
MAG_ICC_PICCEXTERNAL
public static final EReaderType MAG_ICC_PICCEXTERNAL
磁条卡读卡器, 接触式IC卡读卡器和外置射频读卡器MAG & ICC & external RF
-
DEFAULT
public static final EReaderType DEFAULT
-
-
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 namejava.lang.NullPointerException- if the argument is null
-
getEReaderType
public byte getEReaderType()
-
-