return TYPE;
}
public long getRecordsSize() throws IOException {
long size = 0l;
OClusterPositionIterator it = absoluteIterator();
OPhysicalPosition pos = new OPhysicalPosition();
while (it.hasNext()) {
Long position = it.next();
pos = getPhysicalPosition(position.longValue(), pos);
if (pos.dataPosition > -1)
size += storage.getDataSegment(pos.dataSegment).getRecordSize(pos.dataPosition);
}
return size;