Uses of Enum Class
org.eclipse.jgit.internal.storage.dfs.DfsObjDatabase.PackSource
Packages that use DfsObjDatabase.PackSource
Package
Description
Distributed file system based repository storage.
-
Uses of DfsObjDatabase.PackSource in org.eclipse.jgit.internal.storage.dfs
Fields in org.eclipse.jgit.internal.storage.dfs with type parameters of type DfsObjDatabase.PackSourceModifier and TypeFieldDescriptionstatic final Comparator<DfsObjDatabase.PackSource>
DfsObjDatabase.PackSource.DEFAULT_COMPARATOR
Default comparator for sources.Methods in org.eclipse.jgit.internal.storage.dfs that return DfsObjDatabase.PackSourceModifier and TypeMethodDescriptionDfsPackDescription.getPackSource()
Get the source of the pack.static DfsObjDatabase.PackSource
Returns the enum constant of this class with the specified name.static DfsObjDatabase.PackSource[]
DfsObjDatabase.PackSource.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.eclipse.jgit.internal.storage.dfs that return types with arguments of type DfsObjDatabase.PackSourceModifier and TypeMethodDescriptionDfsObjDatabase.PackSource.ComparatorBuilder.build()
Build the comparator.Methods in org.eclipse.jgit.internal.storage.dfs with parameters of type DfsObjDatabase.PackSourceModifier and TypeMethodDescriptionDfsObjDatabase.PackSource.ComparatorBuilder.add
(DfsObjDatabase.PackSource... sources) Add a collection of sources that should sort as equal.protected abstract DfsPackDescription
DfsObjDatabase.newPack
(DfsObjDatabase.PackSource source) Generate a new unique name for a pack file.protected DfsPackDescription
DfsObjDatabase.newPack
(DfsObjDatabase.PackSource source, long estimatedPackSize) Generate a new unique name for a pack file.protected DfsPackDescription
InMemoryRepository.MemObjDatabase.newPack
(DfsObjDatabase.PackSource source) void
DfsReader.PackLoadListener.onBlockLoad
(String packName, DfsObjDatabase.PackSource src, PackExt ext, long position, DfsReader.PackLoadListener.DfsBlockData dfsBlockData) This is called when a dfs block is loaded into the reader.void
DfsReader.PackLoadListener.onIndexLoad
(String packName, DfsObjDatabase.PackSource src, PackExt ext, long size, Object loadedIdx) This is called when an index reference (e.g.DfsPackDescription.setPackSource
(DfsObjDatabase.PackSource source) Set the source of the pack.Method parameters in org.eclipse.jgit.internal.storage.dfs with type arguments of type DfsObjDatabase.PackSourceModifier and TypeMethodDescriptionstatic Comparator<DfsPackDescription>
DfsPackDescription.objectLookupComparator
(Comparator<DfsObjDatabase.PackSource> packSourceComparator) Comparator for packs when looking up objects in indexes.Constructors in org.eclipse.jgit.internal.storage.dfs with parameters of type DfsObjDatabase.PackSourceModifierConstructorDescriptionDfsPackDescription
(DfsRepositoryDescription repoDesc, String name, DfsObjDatabase.PackSource packSource) Initialize a description by pack name and repository.