com.pax.dal.exceptions
Enum ETypeAException
- java.lang.Object
-
- java.lang.Enum<ETypeAException>
-
- com.pax.dal.exceptions.ETypeAException
-
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<ETypeAException>
public enum ETypeAException extends java.lang.Enum<ETypeAException>
TypeA异常枚举类。Type exception enum.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method and Description intgetErrCodeFromBasement()java.lang.StringgetErrMsg()static ETypeAExceptionvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ETypeAException[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RECEIVE_CMD_ERROR
public static final ETypeAException RECEIVE_CMD_ERROR
-
RECEIVE_LEN_ERROR
public static final ETypeAException RECEIVE_LEN_ERROR
-
RECEIVE_DATA_ERROR
public static final ETypeAException RECEIVE_DATA_ERROR
-
RECEIVE_LRC_ERROR
public static final ETypeAException RECEIVE_LRC_ERROR
-
CMD_NOT_EQUAL_ERROR
public static final ETypeAException CMD_NOT_EQUAL_ERROR
-
LRC_NOT_EQUAL_ERROR
public static final ETypeAException LRC_NOT_EQUAL_ERROR
-
INS_NOT_EQUAL_ERROR
public static final ETypeAException INS_NOT_EQUAL_ERROR
-
TYPEA_CONNECT_ERROR
public static final ETypeAException TYPEA_CONNECT_ERROR
-
TYPEA_DISCONNECT_ERROR
public static final ETypeAException TYPEA_DISCONNECT_ERROR
-
TYPEA_CANCEL_RECV_ERROR
public static final ETypeAException TYPEA_CANCEL_RECV_ERROR
-
TYPEA_RECV_ERROR
public static final ETypeAException TYPEA_RECV_ERROR
-
TYPEA_INCOMPLETE_DATA_ERROR
public static final ETypeAException TYPEA_INCOMPLETE_DATA_ERROR
-
SUB_CMD_NOT_EQUAL_ERROR
public static final ETypeAException SUB_CMD_NOT_EQUAL_ERROR
-
PACKET_LENGTH_ERROR
public static final ETypeAException PACKET_LENGTH_ERROR
-
KEY_INDEX_ERROR
public static final ETypeAException KEY_INDEX_ERROR
-
MODE_ERROR
public static final ETypeAException MODE_ERROR
-
COORDINATE_VALUE_ERROR
public static final ETypeAException COORDINATE_VALUE_ERROR
-
INPUT_LENGTH_ERROR
public static final ETypeAException INPUT_LENGTH_ERROR
-
CANCEL_INPUT
public static final ETypeAException CANCEL_INPUT
-
INPUT_TIMEOUT_ERROR
public static final ETypeAException INPUT_TIMEOUT_ERROR
-
CANCEL_DUKPT_INPUT
public static final ETypeAException CANCEL_DUKPT_INPUT
-
PIN_NOT_EQUAL_ERROR
public static final ETypeAException PIN_NOT_EQUAL_ERROR
-
ENTERED_EMPTY_ERROR
public static final ETypeAException ENTERED_EMPTY_ERROR
-
KEY_NOT_EXIST_ERROR
public static final ETypeAException KEY_NOT_EXIST_ERROR
-
MEMORY_ERROR
public static final ETypeAException MEMORY_ERROR
-
SEND_LRC_ERROR
public static final ETypeAException SEND_LRC_ERROR
-
TMK_ERROR
public static final ETypeAException TMK_ERROR
-
MAC2_NOT_EQUAL_ERROR
public static final ETypeAException MAC2_NOT_EQUAL_ERROR
-
SEQUENCE_NO_OR_LINE_NO_ERROR
public static final ETypeAException SEQUENCE_NO_OR_LINE_NO_ERROR
-
SHORT_INTERVAL_ERROR
public static final ETypeAException SHORT_INTERVAL_ERROR
-
INVALID_KEY_ERROR
public static final ETypeAException INVALID_KEY_ERROR
-
KSN_OVERFLOW_ERROR
public static final ETypeAException KSN_OVERFLOW_ERROR
-
NO_DUKPT_KEY_SPACE_ERROR
public static final ETypeAException NO_DUKPT_KEY_SPACE_ERROR
-
INVALID_APP_NO_ERROR
public static final ETypeAException INVALID_APP_NO_ERROR
-
KEY_CHECK_VALUE_NOT_EXIST_ERROR
public static final ETypeAException KEY_CHECK_VALUE_NOT_EXIST_ERROR
-
BDK_LENGTH_ERROR
public static final ETypeAException BDK_LENGTH_ERROR
-
KSN_LENGTH_ERROR
public static final ETypeAException KSN_LENGTH_ERROR
-
KEY_CHECK_VALUE_NOT_EQUAL_ERROR
public static final ETypeAException KEY_CHECK_VALUE_NOT_EQUAL_ERROR
-
KEY_TO_BE_CLEARED_NOT_EXIST_ERROR
public static final ETypeAException KEY_TO_BE_CLEARED_NOT_EXIST_ERROR
-
PINPAD_CANCEL_ERROR
public static final ETypeAException PINPAD_CANCEL_ERROR
-
PINPAD_LOCKED_ERROR
public static final ETypeAException PINPAD_LOCKED_ERROR
-
UNLOCK_ERRO
public static final ETypeAException UNLOCK_ERRO
-
INVALID_CMD_ERROR
public static final ETypeAException INVALID_CMD_ERROR
-
TXK_ACCESS_ERROR
public static final ETypeAException TXK_ACCESS_ERROR
-
WORKING_KEY_LENGTH_ERROR
public static final ETypeAException WORKING_KEY_LENGTH_ERROR
-
CIPHER_FLAG_ERROR
public static final ETypeAException CIPHER_FLAG_ERROR
-
CLEAR_BUTTON_ERROR
public static final ETypeAException CLEAR_BUTTON_ERROR
-
OTHER_ERROR
public static final ETypeAException OTHER_ERROR
-
-
Method Detail
-
values
public static ETypeAException[] 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 (ETypeAException c : ETypeAException.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ETypeAException 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
-
getErrCodeFromBasement
public int getErrCodeFromBasement()
-
getErrMsg
public java.lang.String getErrMsg()
-
-