/**
<P>Get a full (deep) copy of this VWDouble as an Object.</P>
**/
protected final Object clone() throws CloneNotSupportedException {
VWDouble aciClone = new VWDouble();
for(int i = 0; i < size(); i++) {
aciClone.add(getDouble(i));
}
return aciClone;
}