public class ReadMemoryResponse
extends java.lang.Object
Constructor and Description |
---|
ReadMemoryResponse() |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getAddress()
The address of the first byte of data returned.
|
java.lang.String |
getData()
The bytes read from memory, encoded using base64.
|
java.lang.Integer |
getUnreadableBytes()
The number of unreadable bytes encountered after the last successfully read byte.
|
int |
hashCode() |
void |
setAddress(java.lang.String address)
The address of the first byte of data returned.
|
void |
setData(java.lang.String data)
The bytes read from memory, encoded using base64.
|
void |
setUnreadableBytes(java.lang.Integer unreadableBytes)
The number of unreadable bytes encountered after the last successfully read byte.
|
java.lang.String |
toString() |
@Pure public java.lang.String getAddress()
Treated as a hex value if prefixed with '0x', or as a decimal value otherwise.
public void setAddress(java.lang.String address)
Treated as a hex value if prefixed with '0x', or as a decimal value otherwise.
@Pure public java.lang.Integer getUnreadableBytes()
This can be used to determine the number of bytes that must be skipped before a subsequent 'readMemory' request will succeed.
This is an optional property.
public void setUnreadableBytes(java.lang.Integer unreadableBytes)
This can be used to determine the number of bytes that must be skipped before a subsequent 'readMemory' request will succeed.
This is an optional property.
@Pure public java.lang.String getData()
This is an optional property.
public void setData(java.lang.String data)
This is an optional property.
@Pure public java.lang.String toString()
toString
in class java.lang.Object
@Pure public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
@Pure public int hashCode()
hashCode
in class java.lang.Object