Package com.casioeurope.mis.edt.constant
Class SamLibraryConstant.RETURN
Object
RETURN
- Enclosing class:
- SamLibraryConstant
public static class SamLibraryConstant.RETURN extends Object
List of return value constants. Check execution result of member function with return value constant.
-
Field Summary
Fields Modifier and Type Field Description static int
ERROR_CARDDETECT
Card detection error.static int
ERROR_COMMAND
Command error.static int
ERROR_COMMUNICATION
Communication error.static int
ERROR_DATA_CHECKSUM
Data checksum error.static int
ERROR_DATA_LENGTH
Data length error.static int
ERROR_DATA_SIZE
Data size error.static int
ERROR_EXECUTION
Execution error.static int
ERROR_INTERNAL
Internal error.static int
ERROR_NOTOPENED
Non-open error.static int
ERROR_PATTERN
Pattern error.static int
ERROR_UNSUPPORTED
Unsupported error.static int
SUCCESS
Success. -
Constructor Summary
Constructors Constructor Description RETURN()
-
Method Summary
-
Field Details
-
ERROR_CARDDETECT
public static final int ERROR_CARDDETECTCard detection error. It returns when the SAM card can not be detected.- See Also:
- Constant Field Values
-
ERROR_COMMAND
public static final int ERROR_COMMANDCommand error. It returns when a command error occurs.- See Also:
- Constant Field Values
-
ERROR_COMMUNICATION
public static final int ERROR_COMMUNICATIONCommunication error. It returns when a communication error occurs.- See Also:
- Constant Field Values
-
ERROR_DATA_CHECKSUM
public static final int ERROR_DATA_CHECKSUMData checksum error. It returns when a checksum error occurs.- See Also:
- Constant Field Values
-
ERROR_DATA_LENGTH
public static final int ERROR_DATA_LENGTHData length error. It returns when the length does not correspond to the data.- See Also:
- Constant Field Values
-
ERROR_DATA_SIZE
public static final int ERROR_DATA_SIZEData size error. It returns when data lager than the buffer is received.- See Also:
- Constant Field Values
-
ERROR_EXECUTION
public static final int ERROR_EXECUTIONExecution error. It returns when the first byte of data is 0xE0 and the received data is normal.- See Also:
- Constant Field Values
-
ERROR_INTERNAL
public static final int ERROR_INTERNALInternal error. It returns when an internal error occurs.- See Also:
- Constant Field Values
-
ERROR_NOTOPENED
public static final int ERROR_NOTOPENEDNon-open error. It returns when the function is called with SAM closed.- See Also:
- Constant Field Values
-
ERROR_PATTERN
public static final int ERROR_PATTERNPattern error. It returns when the first byte of the data or the data itself is abnormal.- See Also:
- Constant Field Values
-
ERROR_UNSUPPORTED
public static final int ERROR_UNSUPPORTEDUnsupported error. It returns when the function unsupported by your device.- See Also:
- Constant Field Values
-
SUCCESS
public static final int SUCCESSSuccess. It returns when the function returned successfully.- See Also:
- Constant Field Values
-
-
Constructor Details
-
RETURN
public RETURN()
-