Interface VectorCopier
-
- All Known Implementing Classes:
DefaultVectorCopier
public interface VectorCopier
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcopyInto(Object[] into, int intoStart)Copies all values from the underlying column into theObject[]passed into this method.
-
-
-
Method Detail
-
copyInto
void copyInto(Object[] into, int intoStart)
Copies all values from the underlying column into theObject[]passed into this method.- Parameters:
into- the object array to store the valuesintoStart- the index of the into array to start writing into.
-
-