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_COMPARATORDefault 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.PackSourceReturns 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 DfsPackDescriptionDfsObjDatabase.newPack(DfsObjDatabase.PackSource source) Generate a new unique name for a pack file.protected DfsPackDescriptionDfsObjDatabase.newPack(DfsObjDatabase.PackSource source, long estimatedPackSize) Generate a new unique name for a pack file.protected DfsPackDescriptionInMemoryRepository.MemObjDatabase.newPack(DfsObjDatabase.PackSource source) voidDfsReader.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.voidDfsReader.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.