Package ghidra.util.datastruct
Class StringArrayArray
java.lang.Object
ghidra.util.datastruct.StringArrayArray
- All Implemented Interfaces:
Array,Serializable
Array of String[] that grows as needed.
- See Also:
-
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.String[]get(int index) Retrieves the String array stored at the given index.intReturns the index of the last non-null or non-zero element in the array.voidStores the string array at the given index.voidremove(int index) Removes the value at that index.
-
Constructor Details
-
StringArrayArray
public StringArrayArray()Constructor for StringArrayArray.
-
-
Method Details
-
put
Stores the string array at the given index.- Parameters:
index- the index to store the arrayvalue- the array to store
-
get
Retrieves the String array stored at the given index.- Parameters:
index- the index at which to retrieve the array.- Returns:
- String[] the String array at the index.
-
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:
-
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:
-
remove
public void remove(int index) Description copied from interface:ArrayRemoves the value at that index. If the array is of primitive type (int, short, etc), then "removing" the value is equivilent to setting the value to 0;
-