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
Fields in org.eclipse.jgit.internal.storage.file declared as PackExt Modifier and Type Field Description private PackExtPackFile. packExtMethods in org.eclipse.jgit.internal.storage.file that return PackExt Modifier and Type Method Description PackExtPackFile. getPackExt()Getter for the fieldpackExt.private static PackExtPackFile. getPackExt(java.lang.String endsWithExtension)Methods in org.eclipse.jgit.internal.storage.file that return types with arguments of type PackExt Modifier and Type Method Description private java.util.Map<java.lang.String,java.util.Map<PackExt,PackFile>>PackDirectory. getPackFilesByExtById()Methods in org.eclipse.jgit.internal.storage.file with parameters of type PackExt Modifier and Type Method Description PackFilePackFile. create(PackExt ext)Create a new similar PackFile with the given extension instead.private static java.lang.StringPackFile. createName(java.lang.String id, PackExt extension)private java.lang.StringPackFile. getName(PackExt ext)Constructors in org.eclipse.jgit.internal.storage.file with parameters of type PackExt Constructor Description PackFile(java.io.File directory, java.lang.String id, PackExt ext)Create a PackFile for a pack or related file.PackFile(java.io.File directory, ObjectId id, PackExt ext)Create a PackFile for a pack or related file. -
Uses of PackExt in org.eclipse.jgit.internal.storage.pack
Methods in org.eclipse.jgit.internal.storage.pack that return PackExt Modifier and Type Method Description static PackExtPackExt. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PackExt[]PackExt. values()Returns an array containing the constants of this enum type, in the order they are declared.
-