Package | Description |
---|---|
com.healthmarketscience.jackcess | |
com.healthmarketscience.jackcess.impl | |
com.healthmarketscience.jackcess.util |
Modifier and Type | Method and Description |
---|---|
Index |
IndexBuilder.addToTable(Table table)
Adds a new Index to the given Table with the currently configured
attributes.
|
Index |
IndexBuilder.addToTableDefinition(TableDefinition table)
Adds a new Index to the given TableDefinition with the currently
configured attributes.
|
Index |
TableDefinition.getForeignKeyIndex(Table otherTable) |
Index |
Table.getForeignKeyIndex(Table otherTable) |
Index |
IndexCursor.getIndex() |
Index |
TableDefinition.getIndex(String name) |
Index |
Table.getIndex(String name) |
Index |
TableDefinition.getPrimaryKeyIndex() |
Index |
Table.getPrimaryKeyIndex() |
Index |
Index.getReferencedIndex() |
Modifier and Type | Method and Description |
---|---|
List<? extends Index> |
TableDefinition.getIndexes() |
List<? extends Index> |
Table.getIndexes() |
Modifier and Type | Method and Description |
---|---|
static IndexCursor |
CursorBuilder.createCursor(Index index)
Creates an indexed cursor for the given table.
|
static IndexCursor |
CursorBuilder.createCursor(Index index,
Object[] startRow,
boolean startInclusive,
Object[] endRow,
boolean endInclusive)
Creates an indexed cursor for the given table, narrowed to the given
range.
|
static IndexCursor |
CursorBuilder.createCursor(Index index,
Object[] startRow,
Object[] endRow)
Creates an indexed cursor for the given table, narrowed to the given
range.
|
static Row |
CursorBuilder.findRow(Index index,
Map<String,?> rowPattern)
Convenience method for finding a specific row in an indexed table which
matches a given row "pattern".
|
static Row |
CursorBuilder.findRowByEntry(Index index,
Object... entryValues)
Convenience method for finding a specific row (as defined by the cursor)
where the index entries match the given values.
|
static Object |
CursorBuilder.findValue(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.
|
Modifier and Type | Class and Description |
---|---|
class |
IndexImpl
Access table (logical) index.
|
Modifier and Type | Method and Description |
---|---|
Index |
IndexData.getPrimaryIndex() |
Modifier and Type | Method and Description |
---|---|
List<Index> |
IndexData.getIndexes() |
Modifier and Type | Method and Description |
---|---|
Index |
Joiner.getFromIndex() |
Index |
Joiner.getToIndex() |
Modifier and Type | Method and Description |
---|---|
static Joiner |
Joiner.create(Index fromIndex)
Creates a new Joiner based on the given index which backs a foreign-key
relationship.
|
Copyright © 2005–2024 OpenHMS. All rights reserved.