Package ghidra.util.datastruct
Class ByteArray
java.lang.Object
ghidra.util.datastruct.ByteArray
- All Implemented Interfaces:
Array,Serializable
Array of bytes that grows as needed.
- See Also:
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidcopyDataTo(int index, DataTable table, int toIndex, int toCol) Copies the underlying value for this array at the given index to the data table at the given index and column.byteget(int index) Returns the byte at the given indexintReturns the index of the last non-null or non-zero element in the array.voidput(int index, byte value) Puts the given byte value in the byte array at the given indexvoidremove(int index) Sets the value at the given index to 0.
-
Field Details
-
MIN_SIZE
public static final int MIN_SIZE- See Also:
-
-
Constructor Details
-
ByteArray
public ByteArray()Creates new ByteArray
-
-
Method Details
-
put
public void put(int index, byte value) Puts the given byte value in the byte array at the given index- Parameters:
index- Index into the array.value- value to store- Throws:
IndexOutOfBoundsException- if the index is negative
-
remove
public void remove(int index) Sets the value at the given index to 0.- Specified by:
removein interfaceArray- Parameters:
index- the index to set to 0.- Throws:
IndexOutOfBoundsException- if the index is negative
-
get
public byte get(int index) Returns the byte at the given index- Parameters:
index- index into the array- Returns:
- The byte value at the given index. A 0 will be returned for any index not initialized to another value.
- Throws:
IndexOutOfBoundsException- if the index is negative
-
getLastNonEmptyIndex
public int getLastNonEmptyIndex()Description copied from interface:ArrayReturns the index of the last non-null or non-zero element in the array.- Specified by:
getLastNonEmptyIndexin interfaceArray- See Also:
-
copyDataTo
Description copied from interface:ArrayCopies the underlying value for this array at the given index to the data table at the given index and column. The data type at the column in the data table must be the same as the data in this array.- Specified by:
copyDataToin interfaceArray- Parameters:
index- index into this array to copy the value from.table- the data table object to copy the data to.toIndex- the index into the destination data table to copy the value.toCol- the data table column to store the value. Must be the same type as this array.- See Also:
-