Class DefaultVectorCopier
- java.lang.Object
-
- org.apache.druid.query.rowsandcols.column.DefaultVectorCopier
-
- All Implemented Interfaces:
VectorCopier
public class DefaultVectorCopier extends Object implements VectorCopier
-
-
Constructor Summary
Constructors Constructor Description DefaultVectorCopier(ColumnAccessor accessor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcopyInto(Object[] into, int intoStart)Copies all values from the underlying column into theObject[]passed into this method.
-
-
-
Constructor Detail
-
DefaultVectorCopier
public DefaultVectorCopier(ColumnAccessor accessor)
-
-
Method Detail
-
copyInto
public void copyInto(Object[] into, int intoStart)
Description copied from interface:VectorCopierCopies all values from the underlying column into theObject[]passed into this method.- Specified by:
copyIntoin interfaceVectorCopier- Parameters:
into- the object array to store the valuesintoStart- the index of the into array to start writing into.
-
-