Package ru.curs.celesta.score
Interface HasColumns
-
- All Known Implementing Classes:
AbstractView,BasicTable,DataGrainElement,Index,MaterializedView,ParameterizedView,ReadOnlyTable,Table,View
public interface HasColumns
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetColumnIndex(String name)Column index in the list of columns.Map<String,? extends ColumnMeta<?>>getColumns()List of columns with names.
-
-
-
Method Detail
-
getColumns
Map<String,? extends ColumnMeta<?>> getColumns()
List of columns with names.
-
getColumnIndex
int getColumnIndex(String name)
Column index in the list of columns.- Parameters:
name- column name.
-
-