Package com.macrofocus.molap.table
Interface IndexedTable
-
- All Superinterfaces:
Table
- All Known Implementing Classes:
AbstractIndexedTable
,SimpleTable
public interface IndexedTable extends Table
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Map<ColumnsValue,java.util.List<Row>>
getIndex(Columns key)
java.util.Map<ColumnsValue,Row>
getUniqueIndex(Columns key)
-
Methods inherited from interface com.macrofocus.molap.table.Table
findColumn, getColumn, getColumnClass, getColumnCount, getColumnName, getRow, getRowCount, getValueAt, print
-
-
-
-
Method Detail
-
getUniqueIndex
java.util.Map<ColumnsValue,Row> getUniqueIndex(Columns key)
-
getIndex
java.util.Map<ColumnsValue,java.util.List<Row>> getIndex(Columns key)
-
-