Interface TableRowCountFilter
-
- All Known Implementing Classes:
DefaultTableRowCountFilter
public interface TableRowCountFilter
Some tables are really big and computing the row count may take too long for the data base. Using this hint the @seeDatabaseMetaDataInspectorTool
will compute the row count only for the given tables.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
accept(TableMetaData tableMetaData)
int
defaultRowCount(TableMetaData tableMetaData)
-
-
-
Method Detail
-
accept
boolean accept(TableMetaData tableMetaData)
-
defaultRowCount
int defaultRowCount(TableMetaData tableMetaData)
-
-