Class BlockEraseAccessParams

java.lang.Object
com.zebra.rfid.api3.BlockEraseAccessParams

public class BlockEraseAccessParams extends Object
This class is used for to perform BlockEraseAccess operation
  • Constructor Details

    • BlockEraseAccessParams

      public BlockEraseAccessParams(MEMORY_BANK m_eMemoryBank, int m_nByteOffset, int m_nByteCount, long m_nAccessPassword)
    • BlockEraseAccessParams

      public BlockEraseAccessParams()
      Constructor
  • Method Details

    • getMemoryBank

      public MEMORY_BANK getMemoryBank()
      Memory bank on which access operation is to be performed.
    • setMemoryBank

      public void setMemoryBank(MEMORY_BANK memoryBank)
      Memory bank on which access operation is to be performed.
    • getAccessPassword

      public long getAccessPassword()
    • setAccessPassword

      public void setAccessPassword(long accessPassword)
      Password to be used for the Access operation.
    • getCount

      public int getCount()
      Number of Bytes to be erased Access operation is WORD aligned
    • setCount

      public void setCount(int Count)
      Number of Bytes to be erased. Access operation is WORD aligned
    • getOffset

      public int getOffset()
      Address of the first byte to be written to the chosen memory bank. Access operation is WORD aligned
    • setOffset

      public void setOffset(int Offset)
      Address of the first byte to be written to the chosen memory bank. Access operation is WORD aligned
    • getByteCount

      public int getByteCount()
      Deprecated.
      Number of Bytes to be erased. Since Access operation is WORD aligned, offset be in double bytes.
    • setByteCount

      public void setByteCount(int byteCount)
      Deprecated.
      Number of Bytes to be erased. Since Access operation is WORD aligned, offset be in double bytes.
    • getByteOffset

      public int getByteOffset()
      Deprecated.
      Address of the first byte to be written to the chosen memory bank. Since Access operation is WORD aligned, offset be in double bytes.
    • setByteOffset

      public void setByteOffset(int byteOffset)
      Deprecated.
      Address of the first byte to be written to the chosen memory bank. Since Access operation is WORD aligned, offset be in double bytes.