Class WriteMemoryResponse


  • public class WriteMemoryResponse
    extends java.lang.Object
    Response to 'writeMemory' request.

    Since 1.48

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object obj)  
      java.lang.Integer getBytesWritten()
      Property that should be returned when 'allowPartial' is true to indicate the number of bytes starting from address that were successfully written.
      java.lang.Integer getOffset()
      Property that should be returned when 'allowPartial' is true to indicate the offset of the first byte of data successfully written.
      int hashCode()  
      void setBytesWritten​(java.lang.Integer bytesWritten)
      Property that should be returned when 'allowPartial' is true to indicate the number of bytes starting from address that were successfully written.
      void setOffset​(java.lang.Integer offset)
      Property that should be returned when 'allowPartial' is true to indicate the offset of the first byte of data successfully written.
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • WriteMemoryResponse

        public WriteMemoryResponse()
    • Method Detail

      • getOffset

        public java.lang.Integer getOffset()
        Property that should be returned when 'allowPartial' is true to indicate the offset of the first byte of data successfully written. Can be negative.

        This is an optional property.

      • setOffset

        public void setOffset​(java.lang.Integer offset)
        Property that should be returned when 'allowPartial' is true to indicate the offset of the first byte of data successfully written. Can be negative.

        This is an optional property.

      • getBytesWritten

        public java.lang.Integer getBytesWritten()
        Property that should be returned when 'allowPartial' is true to indicate the number of bytes starting from address that were successfully written.

        This is an optional property.

      • setBytesWritten

        public void setBytesWritten​(java.lang.Integer bytesWritten)
        Property that should be returned when 'allowPartial' is true to indicate the number of bytes starting from address that were successfully written.

        This is an optional property.

      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object