public void read(int arrayIndex, Var16CharHolder h) { vector.getAccessor().get(idx(), arrayIndex, h); }
public String readString(int arrayIndex) { return vector.getAccessor().getSingleObject(idx(), arrayIndex); }
public int size() { return vector.getAccessor().getInnerValueCountAt(idx()); }
public void read(int arrayIndex, NullableVar16CharHolder h) { vector.getAccessor().get(idx(), arrayIndex, h); }
public List<Object> readObject() { return (List<Object>) (Object) vector.getAccessor().getObject(idx()); }
public void copyFrom(int inIndex, int outIndex, RepeatedVar16CharVector v) { final Accessor vAccessor = v.getAccessor(); final int count = vAccessor.getInnerValueCountAt(inIndex); mutator.startNewValue(outIndex); for (int i = 0; i < count; i++) { mutator.add(outIndex, vAccessor.get(inIndex, i)); } mutator.setValueCount(outIndex+1); }
public void copyFromSafe(int inIndex, int outIndex, RepeatedVar16CharVector v) { final Accessor vAccessor = v.getAccessor(); final int count = vAccessor.getInnerValueCountAt(inIndex); mutator.startNewValue(outIndex); for (int i = 0; i < count; i++) { mutator.addSafe(outIndex, vAccessor.get(inIndex, i)); } mutator.setValueCount(outIndex+1); }
public void getFieldById(int fieldId, RepeatedVar16CharHolder holder){ ((RepeatedVar16CharVector) vectors[fieldId]).getAccessor().get(currentIndex, holder); }
public void read(int arrayIndex, NullableVar16CharHolder h) { vector.getAccessor().get(idx(), arrayIndex, h); }
public String readString(int arrayIndex) { return vector.getAccessor().getSingleObject(idx(), arrayIndex); }
public List<Object> readObject() { return (List<Object>) (Object) vector.getAccessor().getObject(idx()); }
public int size() { return vector.getAccessor().getInnerValueCountAt(idx()); }
public void read(int arrayIndex, Var16CharHolder h) { vector.getAccessor().get(idx(), arrayIndex, h); }
public void copyFrom(int inIndex, int outIndex, RepeatedVar16CharVector v) { final Accessor vAccessor = v.getAccessor(); final int count = vAccessor.getInnerValueCountAt(inIndex); mutator.startNewValue(outIndex); for (int i = 0; i < count; i++) { mutator.add(outIndex, vAccessor.get(inIndex, i)); } mutator.setValueCount(outIndex+1); }
public void copyFromSafe(int inIndex, int outIndex, RepeatedVar16CharVector v) { final Accessor vAccessor = v.getAccessor(); final int count = vAccessor.getInnerValueCountAt(inIndex); mutator.startNewValue(outIndex); for (int i = 0; i < count; i++) { mutator.addSafe(outIndex, vAccessor.get(inIndex, i)); } mutator.setValueCount(outIndex+1); }