com.pax.dal.entity
Enum EPiccRemoveMode
- java.lang.Object
-
- java.lang.Enum<EPiccRemoveMode>
-
- com.pax.dal.entity.EPiccRemoveMode
-
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<EPiccRemoveMode>
public enum EPiccRemoveMode extends java.lang.Enum<EPiccRemoveMode>
射频卡移卡模式定义PICC Remove Mode
-
-
Enum Constant Summary
Enum Constants Enum Constant and Description EMV符合EMV非接规范的移卡模式 复位载波,并执行卡移开检测Comply with the remove card mode of EMV non-connected standard Reset carrier, and execute card removed detection.HALTDeprecated.仅向卡片发送停活指令后就退出;该过程不执行卡移开检测HALT, quit after sending halt command to card; no card removed check during this process.REMOVEDeprecated.向卡片发送停活指令,并执行卡移开检测REMOVE, Send halt command to card, and execute card removed detection.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method and Description bytegetPiccRemoveMode()static EPiccRemoveModevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EPiccRemoveMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HALT
@Deprecated public static final EPiccRemoveMode HALT
Deprecated.仅向卡片发送停活指令后就退出;该过程不执行卡移开检测HALT, quit after sending halt command to card; no card removed check during this process.
-
REMOVE
@Deprecated public static final EPiccRemoveMode REMOVE
Deprecated.向卡片发送停活指令,并执行卡移开检测REMOVE, Send halt command to card, and execute card removed detection.
-
EMV
public static final EPiccRemoveMode EMV
符合EMV非接规范的移卡模式 复位载波,并执行卡移开检测Comply with the remove card mode of EMV non-connected standard Reset carrier, and execute card removed detection.
-
-
Method Detail
-
values
public static EPiccRemoveMode[] 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 (EPiccRemoveMode c : EPiccRemoveMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EPiccRemoveMode 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
-
getPiccRemoveMode
public byte getPiccRemoveMode()
-
-