// System.out.println(toString(stringType));
}
}
public static String toString(IdBase idBase) {
StringTypes instance = (StringTypes)idBase;
StringBuffer buffer = new StringBuffer("StringTypes id: ");
buffer.append(instance.getId());
buffer.append("; string_not_null_both: ");
buffer.append(instance.getString_not_null_both());
buffer.append("; string_not_null_btree: ");
buffer.append(instance.getString_not_null_btree());
buffer.append("; string_not_null_hash: ");
buffer.append(instance.getString_not_null_hash());
buffer.append("; string_not_null_none: ");
buffer.append(instance.getString_not_null_none());
buffer.append("; string_null_both: ");
buffer.append(instance.getString_null_both().toString());
buffer.append("; string_null_btree: ");
buffer.append(instance.getString_null_btree().toString());
buffer.append("; string_null_hash: ");
buffer.append(instance.getString_null_hash().toString());
buffer.append("; string_null_none: ");
buffer.append(instance.getString_null_none().toString());
return buffer.toString();
}