Interface SvLoadLogRecord


  • public interface SvLoadLogRecord
    Record of a Stored Value load log.
    Since:
    1.0.0
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      int getAmount()
      Gets the load amount value
      int getBalance()
      Gets the SV balance value
      byte[] getFreeData()
      Gets the free bytes as an array of bytes
      byte getKvc()
      Gets the KVC of the load key (as given in the last SV Reload)
      byte[] getLoadDate()
      Gets the load date as an array of bytes
      byte[] getLoadTime()
      Gets the load time as an array of bytes
      byte[] getRawData()
      Gets the raw data of the SV load log record.
      byte[] getSamId()
      Gets the SAM ID as an array of bytes
      int getSamTNum()
      Gets the SAM transaction number value as an int
      int getSvTNum()
      Gets the SV transaction number value as an int
    • Method Detail

      • 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