// System.out.println(toString(yearType));
}
}
public static String toString(IdBase idBase) {
YearTypes instance = (YearTypes)idBase;
StringBuffer buffer = new StringBuffer("YearTypes id: ");
buffer.append(instance.getId());
buffer.append("; year_not_null_both: ");
buffer.append(instance.getYear_not_null_both());
buffer.append("; year_not_null_btree: ");
buffer.append(instance.getYear_not_null_btree());
buffer.append("; year_not_null_hash: ");
buffer.append(instance.getYear_not_null_hash());
buffer.append("; year_not_null_none: ");
buffer.append(instance.getYear_not_null_none());
buffer.append("; year_null_both: ");
buffer.append(instance.getYear_null_both().toString());
buffer.append("; year_null_btree: ");
buffer.append(instance.getYear_null_btree().toString());
buffer.append("; year_null_hash: ");
buffer.append(instance.getYear_null_hash().toString());
buffer.append("; year_null_none: ");
buffer.append(instance.getYear_null_none().toString());
return buffer.toString();
}