Uses of Class
org.eclipse.jgit.internal.storage.file.PackBitmapIndex
-
Packages that use PackBitmapIndex Package Description org.eclipse.jgit.internal.storage.dfs Distributed file system based repository storage.org.eclipse.jgit.internal.storage.file File based repository storage.org.eclipse.jgit.lib Core API for repository, config, refs, object database. -
-
Uses of PackBitmapIndex in org.eclipse.jgit.internal.storage.dfs
Fields in org.eclipse.jgit.internal.storage.dfs declared as PackBitmapIndex Modifier and Type Field Description private PackBitmapIndex
DfsPackFile. bitmapIndex
Index of compressed bitmap mapping entire object graph.Methods in org.eclipse.jgit.internal.storage.dfs that return PackBitmapIndex Modifier and Type Method Description PackBitmapIndex
DfsPackFile. getBitmapIndex(DfsReader ctx)
Get the BitmapIndex for this PackFile.Methods in org.eclipse.jgit.internal.storage.dfs that return types with arguments of type PackBitmapIndex Modifier and Type Method Description private DfsBlockCache.Ref<PackBitmapIndex>
DfsPackFile. loadBitmapIndex(DfsReader ctx, DfsStreamKey bitmapKey)
-
Uses of PackBitmapIndex in org.eclipse.jgit.internal.storage.file
Subclasses of PackBitmapIndex in org.eclipse.jgit.internal.storage.file Modifier and Type Class Description (package private) class
BasePackBitmapIndex
Base implementation of the PackBitmapIndex.class
PackBitmapIndexBuilder
Helper for constructingPackBitmapIndex
es.class
PackBitmapIndexRemapper
A PackBitmapIndex that remaps the bitmaps in the previous index to the positions in the new pack index.(package private) class
PackBitmapIndexV1
Support for the pack bitmap index v1 format.Fields in org.eclipse.jgit.internal.storage.file declared as PackBitmapIndex Modifier and Type Field Description private PackBitmapIndex
Pack. bitmapIdx
(package private) PackBitmapIndex
PackBitmapIndexRemapper. newPackIndex
(package private) PackBitmapIndex
BitmapIndexImpl. packIndex
Methods in org.eclipse.jgit.internal.storage.file that return PackBitmapIndex Modifier and Type Method Description (package private) PackBitmapIndex
Pack. getBitmapIndex()
(package private) PackBitmapIndex
BitmapIndexImpl. getPackBitmapIndex()
static PackBitmapIndex
PackBitmapIndex. open(java.io.File idxFile, PackIndex packIndex, PackReverseIndex reverseIndex)
Read an existing pack bitmap index file from a buffered stream.static PackBitmapIndex
PackBitmapIndex. read(java.io.InputStream fd, PackBitmapIndex.SupplierWithIOException<PackIndex> packIndexSupplier, PackBitmapIndex.SupplierWithIOException<PackReverseIndex> reverseIndexSupplier, boolean loadParallelRevIndex)
Read an existing pack bitmap index file from a buffered stream.static PackBitmapIndex
PackBitmapIndex. read(java.io.InputStream fd, PackIndex packIndex, PackReverseIndex reverseIndex)
Read an existing pack bitmap index file from a buffered stream.Methods in org.eclipse.jgit.internal.storage.file with parameters of type PackBitmapIndex Modifier and Type Method Description static PackBitmapIndexRemapper
PackBitmapIndexRemapper. newPackBitmapIndex(BitmapIndex prevBitmapIndex, PackBitmapIndex newIndex)
A PackBitmapIndex that maps the positions in the prevBitmapIndex to the ones in the newIndex.boolean
BitmapIndexImpl.CompressedBitmapBuilder. removeAllOrNone(PackBitmapIndex index)
Constructors in org.eclipse.jgit.internal.storage.file with parameters of type PackBitmapIndex Constructor Description BitmapIndexImpl(PackBitmapIndex packIndex)
Creates a BitmapIndex that is back by Compressed bitmaps.PackBitmapIndexRemapper(BasePackBitmapIndex oldPackIndex, PackBitmapIndex newPackIndex)
PackBitmapIndexRemapper(PackBitmapIndex newPackIndex)
-
Uses of PackBitmapIndex in org.eclipse.jgit.lib
Methods in org.eclipse.jgit.lib with parameters of type PackBitmapIndex Modifier and Type Method Description boolean
BitmapIndex.BitmapBuilder. removeAllOrNone(PackBitmapIndex bitmapIndex)
Determines if the entire bitmap index is contained in the bitmap.
-