Uses of Class
org.eclipse.jgit.internal.storage.pack.PackExt
-
Packages that use PackExt 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.internal.storage.pack Reading/writing Git pack files. -
-
Uses of PackExt in org.eclipse.jgit.internal.storage.dfs
Fields in org.eclipse.jgit.internal.storage.dfs declared as PackExt Modifier and Type Field Description (package private) PackExtBlockBasedFile. extprivate PackExtBlockBasedFile.LazyChannel. extMethods in org.eclipse.jgit.internal.storage.dfs with parameters of type PackExt Modifier and Type Method Description voidDfsPackDescription. addFileExt(PackExt ext)Adds the pack file extension to the known list.(package private) byte[]InMemoryRepository.MemPack. get(PackExt ext)intDfsPackDescription. getBlockSize(PackExt ext)Get blockSize of the file, in bytes.java.lang.StringDfsPackDescription. getFileName(PackExt ext)Get file namelongDfsPackDescription. getFileSize(PackExt ext)Get size of the file, in bytes.DfsStreamKeyDfsPackDescription. getStreamKey(PackExt ext)Get cache key for use by the block cache.booleanDfsPackDescription. hasFileExt(PackExt ext)Whether the pack file extension is known to exist.static DfsStreamKeyDfsStreamKey. of(DfsRepositoryDescription repo, java.lang.String name, PackExt ext)Create aDfsStreamKeyprotected abstract ReadableChannelDfsObjDatabase. openFile(DfsPackDescription desc, PackExt ext)Open a pack, pack index, or other related file for reading.protected ReadableChannelInMemoryRepository.MemObjDatabase. openFile(DfsPackDescription desc, PackExt ext)(package private) voidInMemoryRepository.MemPack. put(PackExt ext, byte[] data)DfsPackDescriptionDfsPackDescription. setBlockSize(PackExt ext, int blockSize)Set blockSize of the file, in bytes.DfsPackDescriptionDfsPackDescription. setFileSize(PackExt ext, long bytes)Set size of the file in bytes.protected abstract DfsOutputStreamDfsObjDatabase. writeFile(DfsPackDescription desc, PackExt ext)Open a pack, pack index, or other related file for writing.protected DfsOutputStreamInMemoryRepository.MemObjDatabase. writeFile(DfsPackDescription desc, PackExt ext)Constructors in org.eclipse.jgit.internal.storage.dfs with parameters of type PackExt Constructor Description BlockBasedFile(DfsBlockCache cache, DfsPackDescription desc, PackExt ext)ByteArrayDfsStreamKey(DfsRepositoryDescription repo, byte[] name, PackExt ext)DfsStreamKey(int hash, PackExt ext)Constructor for DfsStreamKey.LazyChannel(DfsReader ctx, DfsPackDescription desc, PackExt ext) -
Uses of PackExt in org.eclipse.jgit.internal.storage.file
Methods in org.eclipse.jgit.internal.storage.file with parameters of type PackExt Modifier and Type Method Description private java.io.FilePackFile. extFile(PackExt ext)private booleanPackFile. hasExt(PackExt ext)private voidGC. removeOldPack(java.io.File packFile, java.lang.String packName, PackExt ext, int deleteOptions)Deletes old pack file, unless 'preserve-oldpacks' is set, in which case it moves the pack file to the preserved directory -
Uses of PackExt in org.eclipse.jgit.internal.storage.pack
Fields in org.eclipse.jgit.internal.storage.pack declared as PackExt Modifier and Type Field Description static PackExtPackExt. BITMAP_INDEXA pack bitmap index file extension.static PackExtPackExt. INDEXA pack index file extension.static PackExtPackExt. KEEPA keep pack file extension.static PackExtPackExt. PACKA pack file extension.static PackExtPackExt. REFTABLEA reftable file.private static PackExt[]PackExt. VALUESMethods in org.eclipse.jgit.internal.storage.pack that return PackExt Modifier and Type Method Description static PackExtPackExt. newPackExt(java.lang.String ext)Returns a PackExt for the file extension and registers it in the values array.static PackExt[]PackExt. values()Get all of the PackExt values.
-