Interface SvLoadLogRecord
public interface SvLoadLogRecord
Record of a Stored Value load log.
- Since:
- 1.0.0
-
Method Summary
Modifier and TypeMethodDescriptionint
Gets the load amount valueint
Gets the SV balance valuebyte[]
Gets the free bytes as an array of bytesbyte
getKvc()
Gets the KVC of the load key (as given in the last SV Reload)byte[]
Gets the load date as an array of bytesbyte[]
Gets the load time as an array of bytesbyte[]
Gets the raw data of the SV load log record.byte[]
getSamId()
Gets the SAM ID as an array of bytesint
Gets the SAM transaction number value as an intint
Gets the SV transaction number value as an int
-
Method Details
-
getRawData
byte[] getRawData()Gets the raw data of the SV load log record.- Returns:
- A byte array.
- Since:
- 1.0.0
-
getLoadDate
byte[] getLoadDate()Gets the load date as an array of bytes- Returns:
- A 2-byte byte array
- Since:
- 1.0.0
-
getLoadTime
byte[] getLoadTime()Gets the load time as an array of bytes- Returns:
- A 2-byte byte array
- Since:
- 1.0.0
-
getAmount
int getAmount()Gets the load amount value- Returns:
- An int
- Since:
- 1.0.0
-
getBalance
int getBalance()Gets the SV balance value- Returns:
- An int
- Since:
- 1.0.0
-
getFreeData
byte[] getFreeData()Gets the free bytes as an array of bytes- Returns:
- A 2-byte byte array
- Since:
- 1.0.0
-
getKvc
byte getKvc()Gets the KVC of the load key (as given in the last SV Reload)- Returns:
- A byte
- Since:
- 1.0.0
-
getSamId
byte[] getSamId()Gets the SAM ID as an array of bytes- Returns:
- A 4-byte byte array
- Since:
- 1.0.0
-
getSamTNum
int getSamTNum()Gets the SAM transaction number value as an int- Returns:
- An int
- Since:
- 1.0.0
-
getSvTNum
int getSvTNum()Gets the SV transaction number value as an int- Returns:
- An int
- Since:
- 1.0.0
-