* @return true if the data field can return primitive <code>boolean</code>
* values, false otherwise. If true, the {@link #getBoolean(int, String)}
* method can be used safely.
*/
public final boolean canGetBoolean(String field) {
Column col = getColumn(field);
return ( col==null ? false : col.canGetBoolean() );
}