public double[] getTimestamps(String key) {
ColumnDraft col = getColumn(key);
if (col != null) {
Double2ObjectMap m = getDynamicAttributeValue(((ColumnDraftImpl) col).getIndex());
if (m != null) {
return m.keySet().toDoubleArray();
}
}
return null;
}