Package org.apache.drill.exec.vector
Class Float8Vector.Mutator
java.lang.Object
org.apache.drill.exec.vector.BaseValueVector.BaseMutator
org.apache.drill.exec.vector.Float8Vector.Mutator
- All Implemented Interfaces:
ValueVector.Mutator
- Enclosing class:
Float8Vector
Float8.Mutator implements a mutable vector of fixed width values.
Elements in the vector are accessed by position from the logical start of
the vector. Values should be pushed onto the vector sequentially, but may
be randomly accessed.
- The width of each element is
Float8Vector.VALUE_WIDTH(= 8) byte(s). - The equivalent Java primitive is 'double'
-
Method Summary
Modifier and TypeMethodDescriptionvoidgenerateTestData(int size) voidgenerateTestDataAlt(int size) voidset(int index, double value) Set the element at the given index to the given value.protected voidset(int index, Float8Holder holder) protected voidset(int index, NullableFloat8Holder holder) voidsetSafe(int index, double value) Set the value of a required or nullable vector.voidsetSafe(int index, Float8Holder holder) voidsetSafe(int index, NullableFloat8Holder holder) voidsetValueCount(int valueCount) Sets the number of values that is stored in this vector to the given value count.Methods inherited from class org.apache.drill.exec.vector.BaseValueVector.BaseMutator
exchange, reset
-
Method Details
-
set
public void set(int index, double value) Set the element at the given index to the given value. Note that widths smaller than 32 bits are handled by the DrillBuf interface.- Parameters:
index- position of the bit to setvalue- value to set
-
setSafe
public void setSafe(int index, double value) Set the value of a required or nullable vector. Grows the vector as needed. Does not enforce size limits; scalar fixed-width types can never overflow a vector.- Parameters:
index- item to write
-
set
-
setSafe
-
set
-
setSafe
-
generateTestData
public void generateTestData(int size) - Specified by:
generateTestDatain interfaceValueVector.Mutator- Overrides:
generateTestDatain classBaseValueVector.BaseMutator
-
generateTestDataAlt
public void generateTestDataAlt(int size) -
setValueCount
public void setValueCount(int valueCount) Description copied from interface:ValueVector.MutatorSets the number of values that is stored in this vector to the given value count. WARNING! Once the valueCount is set, the vector should be considered immutable.- Parameters:
valueCount- value count to set.
-