Package ghidra.util.datastruct
Class FloatArray
- java.lang.Object
- 
- ghidra.util.datastruct.FloatArray
 
- 
- All Implemented Interfaces:
- Array,- java.io.Serializable
 
 public class FloatArray extends java.lang.Object implements Array, java.io.Serializable Array of floats that grows as needed.- See Also:
- Serialized Form
 
- 
- 
Field SummaryFields Modifier and Type Field Description static intMIN_SIZE
 - 
Constructor SummaryConstructors Constructor Description FloatArray()Creates new FloatArray
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcopyDataTo(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.floatget(int index)Returns the int at the given indexintgetLastNonEmptyIndex()Returns the index of the last non-null or non-zero element in the array.voidput(int index, float value)Puts the given float value in the float array at the given indexvoidremove(int index)Sets the value at the given index to 0.
 
- 
- 
- 
Field Detail- 
MIN_SIZEpublic static final int MIN_SIZE - See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
putpublic void put(int index, float value)Puts the given float value in the float array at the given index- Parameters:
- index- Index into the array.
- value- value to store
- Throws:
- java.lang.IndexOutOfBoundsException- if the index is negative
 
 - 
removepublic void remove(int index) Sets the value at the given index to 0.
 - 
getpublic float get(int index) Returns the int at the given index- Parameters:
- index- index into the array
- Returns:
- The int value at the given index. A 0 will be return for any index not initialized to another value.
- Throws:
- java.lang.IndexOutOfBoundsException- if the index is negative
 
 - 
getLastNonEmptyIndexpublic int getLastNonEmptyIndex() Description copied from interface:ArrayReturns the index of the last non-null or non-zero element in the array.- Specified by:
- getLastNonEmptyIndexin interface- Array
- See Also:
- Array.getLastNonEmptyIndex()
 
 - 
copyDataTopublic void copyDataTo(int index, DataTable table, int toIndex, int toCol)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 interface- Array
- 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:
- Array.copyDataTo(int, DataTable, int, int)
 
 
- 
 
-