private Timestamp getTimestampFor(int i) {
return new Timestamp(getMillisFor(1980, 0, 1, 0, 0, i));
}
public static String toString(IdBase instance) {
TimestampAsSqlTimestampTypes timetype = (TimestampAsSqlTimestampTypes)instance;
StringBuffer buffer = new StringBuffer("TimestampTypes id: ");
buffer.append(timetype.getId());
buffer.append("; timestamp_not_null_both: ");
buffer.append(timetype.getTimestamp_not_null_both().toString());
buffer.append("; timestamp_not_null_btree: ");
buffer.append(timetype.getTimestamp_not_null_btree().toString());
buffer.append("; timestamp_not_null_hash: ");
buffer.append(timetype.getTimestamp_not_null_hash().toString());
buffer.append("; timestamp_not_null_none: ");
buffer.append(timetype.getTimestamp_not_null_none().toString());
return buffer.toString();
}