Returns true if the given object is appropriate as a lookup value (value in the first column) to get a row in this DataTable using the given LookupType. @param lookupType The LookupType used to determine how rows are analyzed to determine if one will be matched for the given l
(LookupType lookupType, Object lookupValue)
| 215 | * first column) to get a row in this DataTable using the given LookupType |
| 216 | */ |
| 217 | public boolean hasRow(LookupType lookupType, Object lookupValue) |
| 218 | { |
| 219 | //Cast should be enforced by behavior of addColumn |
| 220 | return getRow(lookupType, lookupValue) != null; |
| 221 | } |
| 222 | |
| 223 | /** |
| 224 | * Returns the FormatManager for the given column (zero indexed). |