Uses of Class
org.eclipse.jgit.internal.storage.file.PackIndex
-
Packages that use PackIndex Package Description org.eclipse.jgit.internal.fsck Git fsck support.org.eclipse.jgit.internal.storage.dfs Distributed file system based repository storage.org.eclipse.jgit.internal.storage.file File based repository storage. -
-
Uses of PackIndex in org.eclipse.jgit.internal.fsck
Methods in org.eclipse.jgit.internal.fsck with parameters of type PackIndex Modifier and Type Method Description voidFsckPackParser. verifyIndex(PackIndex idx)Verify the existing index file with all objects from the pack. -
Uses of PackIndex in org.eclipse.jgit.internal.storage.dfs
Methods in org.eclipse.jgit.internal.storage.dfs that return PackIndex Modifier and Type Method Description PackIndexDfsPackFile. getPackIndex(DfsReader ctx)Get the PackIndex for this PackFile. -
Uses of PackIndex in org.eclipse.jgit.internal.storage.file
Methods in org.eclipse.jgit.internal.storage.file that return PackIndex Modifier and Type Method Description PackIndexPack. getIndex()Get the index for this pack file.static PackIndexPackIndex. open(File idxFile)Open an existing pack.idxfile for reading.static PackIndexPackIndex. read(InputStream fd)Read an existing pack index file from a buffered stream.Methods in org.eclipse.jgit.internal.storage.file with parameters of type PackIndex Modifier and Type Method Description static PackBitmapIndexPackBitmapIndex. open(File idxFile, PackIndex packIndex, PackReverseIndex reverseIndex)Read an existing pack bitmap index file from a buffered stream.static PackBitmapIndexPackBitmapIndex. read(InputStream fd, PackIndex packIndex, PackReverseIndex reverseIndex)Read an existing pack bitmap index file from a buffered stream.Method parameters in org.eclipse.jgit.internal.storage.file with type arguments of type PackIndex Modifier and Type Method Description static PackBitmapIndexPackBitmapIndex. read(InputStream fd, PackBitmapIndex.SupplierWithIOException<PackIndex> packIndexSupplier, PackBitmapIndex.SupplierWithIOException<PackReverseIndex> reverseIndexSupplier, boolean loadParallelRevIndex)Read an existing pack bitmap index file from a buffered stream.Constructors in org.eclipse.jgit.internal.storage.file with parameters of type PackIndex Constructor Description PackReverseIndex(PackIndex packIndex)Create reverse index from straight/forward pack index, by indexing all its entries.
-