Uses of Class
org.eclipse.jgit.revwalk.ObjectWalk
-
Packages that use ObjectWalk Package Description org.eclipse.jgit.internal.storage.file File based repository storage.org.eclipse.jgit.internal.storage.pack Reading/writing Git pack files.org.eclipse.jgit.internal.transport.connectivity org.eclipse.jgit.lfs org.eclipse.jgit.pgm org.eclipse.jgit.revwalk Walking revision graphs (commit history).org.eclipse.jgit.revwalk.filter Filters for use in revision walking. -
-
Uses of ObjectWalk in org.eclipse.jgit.internal.storage.file
Methods in org.eclipse.jgit.internal.storage.file with parameters of type ObjectWalk Modifier and Type Method Description private void
GC. removeReferenced(java.util.Map<ObjectId,java.io.File> id2File, ObjectWalk w)
Remove all entries from a map which key is the id of an object referenced by the given ObjectWalk -
Uses of ObjectWalk in org.eclipse.jgit.internal.storage.pack
Fields in org.eclipse.jgit.internal.storage.pack declared as ObjectWalk Modifier and Type Field Description private ObjectWalk
PackWriter.DepthAwareVisitationPolicy. walk
Methods in org.eclipse.jgit.internal.storage.pack that return ObjectWalk Modifier and Type Method Description private ObjectWalk
PackWriter. getObjectWalk()
Methods in org.eclipse.jgit.internal.storage.pack with parameters of type ObjectWalk Modifier and Type Method Description private boolean
PackWriter. depthSkip(RevObject obj, ObjectWalk walker)
Determines if the object should be omitted from the pack as a result of its depth (probably because of the tree:filter). private void
PackWriter. findObjectsToPack(ProgressMonitor countingMonitor, ObjectWalk walker, java.util.Set<? extends ObjectId> want, java.util.Set<? extends ObjectId> have, java.util.Set<? extends ObjectId> noBitmaps)
void
PackWriter. preparePack(ProgressMonitor countingMonitor, ObjectWalk walk, java.util.Set<? extends ObjectId> interestingObjects, java.util.Set<? extends ObjectId> uninterestingObjects, java.util.Set<? extends ObjectId> noBitmaps)
Prepare the list of objects to be written to the pack stream.Constructors in org.eclipse.jgit.internal.storage.pack with parameters of type ObjectWalk Constructor Description DepthAwareVisitationPolicy(ObjectWalk walk)
-
Uses of ObjectWalk in org.eclipse.jgit.internal.transport.connectivity
Methods in org.eclipse.jgit.internal.transport.connectivity with parameters of type ObjectWalk Modifier and Type Method Description private void
FullConnectivityChecker. checkCommitTree(ConnectivityChecker.ConnectivityCheckInfo connectivityCheckInfo, ObjectWalk ow, ProgressMonitor pm)
private void
FullConnectivityChecker. checkObjects(ConnectivityChecker.ConnectivityCheckInfo connectivityCheckInfo, ObjectWalk ow, ProgressMonitor pm)
private boolean
FullConnectivityChecker. markStartAndKnownNodes(ConnectivityChecker.ConnectivityCheckInfo connectivityCheckInfo, ObjectWalk ow, java.util.Set<ObjectId> haves, ProgressMonitor pm)
-
Uses of ObjectWalk in org.eclipse.jgit.lfs
Methods in org.eclipse.jgit.lfs with parameters of type ObjectWalk Modifier and Type Method Description private void
LfsPrePushHook. excludeRemoteRefs(ObjectWalk walk)
private static void
LfsPrePushHook. findLfsPointers(java.util.Set<LfsPointer> toPush, ObjectWalk walk)
-
Uses of ObjectWalk in org.eclipse.jgit.pgm
Methods in org.eclipse.jgit.pgm with parameters of type ObjectWalk Modifier and Type Method Description protected void
RevList. show(ObjectWalk ow, RevObject obj)
"Show" the current RevCommit when called from the main processing loop.protected void
RevWalkTextBuiltin. show(ObjectWalk objectWalk, RevObject currentObject)
"Show" the current RevCommit when called from the main processing loop. -
Uses of ObjectWalk in org.eclipse.jgit.revwalk
Subclasses of ObjectWalk in org.eclipse.jgit.revwalk Modifier and Type Class Description static class
DepthWalk.ObjectWalk
Subclass of ObjectWalk that performs depth filtering.Fields in org.eclipse.jgit.revwalk declared as ObjectWalk Modifier and Type Field Description private ObjectWalk
BitmappedObjectReachabilityChecker. walk
private ObjectWalk
PedestrianObjectReachabilityChecker. walk
private ObjectWalk
BitmapWalker. walker
Methods in org.eclipse.jgit.revwalk that return ObjectWalk Modifier and Type Method Description ObjectWalk
RevWalk. toObjectWalkWithSameObjects()
Create and return anObjectWalk
using the same objects.Methods in org.eclipse.jgit.revwalk with parameters of type ObjectWalk Modifier and Type Method Description boolean
BitmapWalker.BitmapObjectFilter. include(ObjectWalk walker, AnyObjectId objid)
Constructors in org.eclipse.jgit.revwalk with parameters of type ObjectWalk Constructor Description BitmappedObjectReachabilityChecker(ObjectWalk walk)
New instance of the reachability checker using a existing walk.BitmapWalker(ObjectWalk walker, BitmapIndex bitmapIndex, ProgressMonitor pm)
Create a BitmapWalker.PedestrianObjectReachabilityChecker(ObjectWalk walk)
New instance of the reachability checker using a existing walk. -
Uses of ObjectWalk in org.eclipse.jgit.revwalk.filter
Methods in org.eclipse.jgit.revwalk.filter with parameters of type ObjectWalk Modifier and Type Method Description boolean
ObjectFilter.AllFilter. include(ObjectWalk walker, AnyObjectId o)
abstract boolean
ObjectFilter. include(ObjectWalk walker, AnyObjectId objid)
Determine if the named object should be included in the walk.
-