Package com.macrofocus.molap.table
Class AbstractIndexedTable
- java.lang.Object
-
- com.macrofocus.molap.table.AbstractTable
-
- com.macrofocus.molap.table.AbstractIndexedTable
-
- All Implemented Interfaces:
IndexedTable
,Table
- Direct Known Subclasses:
SimpleTable
public abstract class AbstractIndexedTable extends AbstractTable implements IndexedTable
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
AbstractIndexedTable()
-
Method Summary
All Methods Instance Methods Concrete 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 class com.macrofocus.molap.table.AbstractTable
findColumn, getColumn, getRow, print
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.macrofocus.molap.table.Table
findColumn, getColumn, getColumnClass, getColumnCount, getColumnName, getRow, getRowCount, getValueAt, print
-
-
-
-
Method Detail
-
getUniqueIndex
public java.util.Map<ColumnsValue,Row> getUniqueIndex(Columns key)
- Specified by:
getUniqueIndex
in interfaceIndexedTable
-
getIndex
public java.util.Map<ColumnsValue,java.util.List<Row>> getIndex(Columns key)
- Specified by:
getIndex
in interfaceIndexedTable
-
-