Uses of Interface
org.cojen.tupl.Index
Packages that use Index
Package
Description
See
Database to get started with TuplDB.Diagnostics support.
Command-line tools for performing database maintenance.
-
Uses of Index in org.cojen.tupl
Methods in org.cojen.tupl that return IndexModifier and TypeMethodDescriptionDatabase.findIndex(byte[] name) Returns the given named index, returning null if not found.default IndexReturns the given named index, returning null if not found.Sorter.finish()Finish sorting the entries, and return a temporary index with the results.default IndexDatabase.indexById(byte[] id) Returns an index by its identifier, returning null if not found.Database.indexById(long id) Returns an index by its identifier, returning null if not found.Database.newTemporaryIndex()Creates a new unnamed temporary index.Database.openIndex(byte[] name) Returns the given named index, creating it if necessary.default IndexReturns the given named index, creating it if necessary.Methods in org.cojen.tupl with parameters of type IndexModifier and TypeMethodDescriptionDatabase.deleteIndex(Index index) Fully closes and deletes the given index, but does not immediately reclaim the pages it occupied.voidDatabase.renameIndex(Index index, byte[] newName) Renames the given index to the one given.default voidDatabase.renameIndex(Index index, String newName) Renames the given index to the one given. -
Uses of Index in org.cojen.tupl.diag
Fields in org.cojen.tupl.diag declared as IndexModifier and TypeFieldDescriptionprotected IndexCompactionObserver.indexIndex currently being compacted.protected IndexVerificationObserver.indexIndex currently being verified.Methods in org.cojen.tupl.diag with parameters of type IndexModifier and TypeMethodDescriptionbooleanCompactionObserver.indexBegin(Index index) Called before full index compaction begins.booleanVerificationObserver.indexBegin(Index index, int height) Called before full index verification begins.booleanCompactionObserver.indexComplete(Index index) Called after index compaction has finished.booleanVerificationObserver.indexComplete(Index index, boolean passed, String message) Called after index verification has finished. -
Uses of Index in org.cojen.tupl.tools
Methods in org.cojen.tupl.tools with parameters of type Index