Interface TableLister
-
- All Known Subinterfaces:
TableRepository
- All Known Implementing Classes:
DefaultTableLister
,DefaultTableRepository
public interface TableLister
Lists tables in the schema
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<TableProperties>
showTables(SchemaName schema)
Returns list of tables for a given schema.List<TableProperties>
showTables(SchemaName schema, String like)
Returns list of tables for a given schema with additional filter expression.
-
-
-
Method Detail
-
showTables
List<TableProperties> showTables(SchemaName schema)
Returns list of tables for a given schema.- Parameters:
schema
- schema name- Returns:
- list of tables for a given schema
-
showTables
List<TableProperties> showTables(SchemaName schema, String like)
Returns list of tables for a given schema with additional filter expression.- Parameters:
schema
- schema namelike
- filter expression (case-sensitive), e.g.MYTABLE
or%TAB%
- Returns:
- list of tables
-
-