return retval;
}
public void validateValueWidth(final Object value) throws HBqlException {
final ColumnWidth columnWidth = this.getColumnDefinition().getColumnWidth();
if (columnWidth.isWidthSpecified()) {
final int width = columnWidth.getWidth();
if (width > 0 && value instanceof String) {
final String str = (String)value;
if (str.length() != width)
throw new HBqlException("Invalid length in " + this.getNameToUseInExceptions()
+ " expecting width " + width + " but found " + str.length()