Uses of Interface
com.healthmarketscience.jackcess.Index
-
Packages that use Index Package Description com.healthmarketscience.jackcess com.healthmarketscience.jackcess.impl com.healthmarketscience.jackcess.util -
-
Uses of Index in com.healthmarketscience.jackcess
Methods in com.healthmarketscience.jackcess that return Index Modifier and Type Method Description IndexIndexBuilder. addToTable(Table table)Adds a new Index to the given Table with the currently configured attributes.IndexIndexBuilder. addToTableDefinition(TableDefinition table)Adds a new Index to the given TableDefinition with the currently configured attributes.IndexTable. getForeignKeyIndex(Table otherTable)IndexTableDefinition. getForeignKeyIndex(Table otherTable)IndexIndexCursor. getIndex()IndexTable. getIndex(String name)IndexTableDefinition. getIndex(String name)IndexTable. getPrimaryKeyIndex()IndexTableDefinition. getPrimaryKeyIndex()IndexIndex. getReferencedIndex()Methods in com.healthmarketscience.jackcess that return types with arguments of type Index Modifier and Type Method Description List<? extends Index>Table. getIndexes()List<? extends Index>TableDefinition. getIndexes()Methods in com.healthmarketscience.jackcess with parameters of type Index Modifier and Type Method Description static IndexCursorCursorBuilder. createCursor(Index index)Creates an indexed cursor for the given table.static IndexCursorCursorBuilder. 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 IndexCursorCursorBuilder. createCursor(Index index, Object[] startRow, Object[] endRow)Creates an indexed cursor for the given table, narrowed to the given range.static RowCursorBuilder. findRow(Index index, Map<String,?> rowPattern)Convenience method for finding a specific row in an indexed table which matches a given row "pattern".static RowCursorBuilder. 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 ObjectCursorBuilder. 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".CursorBuilderCursorBuilder. setIndex(Index index)Sets an index to use for the cursor. -
Uses of Index in com.healthmarketscience.jackcess.impl
Classes in com.healthmarketscience.jackcess.impl that implement Index Modifier and Type Class Description classIndexImplAccess table (logical) index.Methods in com.healthmarketscience.jackcess.impl that return Index Modifier and Type Method Description IndexIndexData. getPrimaryIndex()Methods in com.healthmarketscience.jackcess.impl that return types with arguments of type Index Modifier and Type Method Description List<Index>IndexData. getIndexes() -
Uses of Index in com.healthmarketscience.jackcess.util
Methods in com.healthmarketscience.jackcess.util that return Index Modifier and Type Method Description IndexJoiner. getFromIndex()IndexJoiner. getToIndex()Methods in com.healthmarketscience.jackcess.util with parameters of type Index Modifier and Type Method Description static JoinerJoiner. create(Index fromIndex)Creates a new Joiner based on the given index which backs a foreign-key relationship.
-