protected Date getTimeFor(int i) {
return new Date(getMillisFor(0, 0, i, 0));
}
public static String toString(IdBase instance) {
TimeAsUtilDateTypes timetype = (TimeAsUtilDateTypes)instance;
StringBuffer buffer = new StringBuffer("TimeTypes id: ");
buffer.append(timetype.getId());
buffer.append("; time_not_null_both: ");
buffer.append(timetype.getTime_not_null_both().toString());
buffer.append("; time_not_null_btree: ");
buffer.append(timetype.getTime_not_null_btree().toString());
buffer.append("; time_not_null_hash: ");
buffer.append(timetype.getTime_not_null_hash().toString());
buffer.append("; time_not_null_none: ");
buffer.append(timetype.getTime_not_null_none().toString());
return buffer.toString();
}