|
|||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||
| Uses of Index in com.healthmarketscience.jackcess |
|---|
| Subclasses of Index in com.healthmarketscience.jackcess | |
|---|---|
class |
BigIndex
Implementation of an Access table index which supports large indexes. |
class |
SimpleIndex
Simple implementation of an Access table index |
| Methods in com.healthmarketscience.jackcess that return Index | |
|---|---|
Index |
Index.EntryCursor.getIndex()
|
Index |
Cursor.getIndex()
|
Index |
Table.getIndex(String name)
|
| Methods in com.healthmarketscience.jackcess that return types with arguments of type Index | |
|---|---|
List<Index> |
Table.getIndexes()
|
| Methods in com.healthmarketscience.jackcess with parameters of type Index | |
|---|---|
int |
Index.compareTo(Index other)
|
static Cursor |
Cursor.createIndexCursor(Table table,
Index index)
Creates an indexed cursor for the given table. |
static Cursor |
Cursor.createIndexCursor(Table table,
Index index,
Object[] startRow,
boolean startInclusive,
Object[] endRow,
boolean endInclusive)
Creates an indexed cursor for the given table, narrowed to the given range. |
static Cursor |
Cursor.createIndexCursor(Table table,
Index index,
Object[] startRow,
Object[] endRow)
Creates an indexed cursor for the given table, narrowed to the given range. |
static Map<String,Object> |
Cursor.findRow(Table table,
Index index,
Map<String,Object> rowPattern)
Convenience method for finding a specific row in an indexed table which matches a given row "pattern". |
static Object |
Cursor.findValue(Table table,
Index index,
Column column,
Column columnPattern,
Object valuePattern)
Convenience method for finding a specific row in a table which matches a given row "pattern". |
CursorBuilder |
CursorBuilder.setIndex(Index index)
Sets an index to use for the cursor. |
|
|||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||