Returns true if the given String is the name of a column in this DataTable. @param columnName The name to be checked to see if it is a column in this DataTable. @return true if the given String is the name of a column in this DataTable
(String columnName)
| 197 | * DataTable |
| 198 | */ |
| 199 | public boolean isColumn(String columnName) |
| 200 | { |
| 201 | return getColumnIndex(columnName) != -1; |
| 202 | } |
| 203 | |
| 204 | /** |
| 205 | * Returns true if the given object is appropriate as a lookup value (value in the |
no test coverage detected