// System.out.println(toString(doubleType));
}
}
public static String toString(IdBase idBase) {
DoubleTypes instance = (DoubleTypes)idBase;
StringBuffer buffer = new StringBuffer("DoubleTypes id: ");
buffer.append(instance.getId());
buffer.append("; double_not_null_both: ");
buffer.append(instance.getDouble_not_null_both());
buffer.append("; double_not_null_btree: ");
buffer.append(instance.getDouble_not_null_btree());
buffer.append("; double_not_null_hash: ");
buffer.append(instance.getDouble_not_null_hash());
buffer.append("; double_not_null_none: ");
buffer.append(instance.getDouble_not_null_none());
buffer.append("; double_null_both: ");
buffer.append(instance.getDouble_null_both().toString());
buffer.append("; double_null_btree: ");
buffer.append(instance.getDouble_null_btree().toString());
buffer.append("; double_null_hash: ");
buffer.append(instance.getDouble_null_hash().toString());
buffer.append("; double_null_none: ");
buffer.append(instance.getDouble_null_none().toString());
return buffer.toString();
}