Uses of Class
org.eclipse.jgit.revwalk.RevObject
Packages that use RevObject
Package
Description
High-level API commands (the porcelain of JGit).
Reading/writing Git pack files.
Core API for repository, config, refs, object database.
Content and commit history merge algorithms.
Building/rendering revision graphs.
Walking revision graphs (commit history).
-
Uses of RevObject in org.eclipse.jgit.api
Methods in org.eclipse.jgit.api that return RevObjectModifier and TypeMethodDescriptionVerificationResult.getObject()
Retrieves the git object of which the signature was verified.TagCommand.getObjectId()
Get the tag's object idMethods in org.eclipse.jgit.api with parameters of type RevObjectModifier and TypeMethodDescriptionAddNoteCommand.setObjectId
(RevObject id) Sets the object id of object you want a note on.RemoveNoteCommand.setObjectId
(RevObject id) Sets the object id of object you want to remove a noteShowNoteCommand.setObjectId
(RevObject id) Sets the object id of object you want a note onTagCommand.setObjectId
(RevObject id) Sets the object id of the tag. -
Uses of RevObject in org.eclipse.jgit.internal.revwalk
Methods in org.eclipse.jgit.internal.revwalk that return types with arguments of type RevObjectModifier and TypeMethodDescriptionBitmappedObjectReachabilityChecker.areAllReachable
(Collection<RevObject> targets, Stream<RevObject> starters) Checks that all targets are reachable from the starters.PedestrianObjectReachabilityChecker.areAllReachable
(Collection<RevObject> targets, Stream<RevObject> starters) Checks that all targets are reachable from the starters.Method parameters in org.eclipse.jgit.internal.revwalk with type arguments of type RevObjectModifier and TypeMethodDescriptionBitmappedObjectReachabilityChecker.areAllReachable
(Collection<RevObject> targets, Stream<RevObject> starters) Checks that all targets are reachable from the starters.BitmappedObjectReachabilityChecker.areAllReachable
(Collection<RevObject> targets, Stream<RevObject> starters) Checks that all targets are reachable from the starters.PedestrianObjectReachabilityChecker.areAllReachable
(Collection<RevObject> targets, Stream<RevObject> starters) Checks that all targets are reachable from the starters.PedestrianObjectReachabilityChecker.areAllReachable
(Collection<RevObject> targets, Stream<RevObject> starters) Checks that all targets are reachable from the starters. -
Uses of RevObject in org.eclipse.jgit.internal.storage.pack
Methods in org.eclipse.jgit.internal.storage.pack with parameters of type RevObjectModifier and TypeMethodDescriptionvoid
Include one object to the output file.Method parameters in org.eclipse.jgit.internal.storage.pack with type arguments of type RevObjectModifier and TypeMethodDescriptionvoid
PackWriter.preparePack
(Iterator<RevObject> objectsSource) Prepare the list of objects to be written to the pack stream. -
Uses of RevObject in org.eclipse.jgit.lib
Methods in org.eclipse.jgit.lib with parameters of type RevObjectModifier and TypeMethodDescriptionvoid
TagBuilder.setObjectId
(RevObject obj) Set the object this tag refers to, and infer its type.GpgSignatureVerifier.verifySignature
(RevObject object, GpgConfig config) Verifies the signature on a signed commit or tag. -
Uses of RevObject in org.eclipse.jgit.merge
Fields in org.eclipse.jgit.merge declared as RevObjectModifier and TypeFieldDescriptionprotected RevObject[]
Merger.sourceObjects
The original objects supplied in the merge; this can be any tree-ish. -
Uses of RevObject in org.eclipse.jgit.revplot
Subclasses of RevObject in org.eclipse.jgit.revplotModifier and TypeClassDescriptionclass
PlotCommit<L extends PlotLane>
A commit reference to a commit in the DAG. -
Uses of RevObject in org.eclipse.jgit.revwalk
Classes in org.eclipse.jgit.revwalk with type parameters of type RevObjectModifier and TypeClassDescriptionclass
RevObjectList<E extends RevObject>
An ordered list ofRevObject
subclasses.Subclasses of RevObject in org.eclipse.jgit.revwalkModifier and TypeClassDescriptionstatic class
RevCommit with a depth (in commits) from a root.class
A binary file, or a symbolic link.class
A commit reference to a commit in the DAG.class
An annotated tag.class
A reference to a tree of subtrees/files.Methods in org.eclipse.jgit.revwalk that return RevObjectModifier and TypeMethodDescriptionfinal RevObject
RevTag.getObject()
Get a reference to the object this tag was placed on.RevWalk.lookupAny
(AnyObjectId id, int type) Locate a reference to any object without loading it.RevWalk.lookupOrNull
(AnyObjectId id) Locate an object that was previously allocated in this walk.AsyncRevObjectQueue.next()
Obtain the next object.ObjectWalk.nextObject()
Pop the next most recent object.RevWalk.parseAny
(AnyObjectId id) Locate a reference to any object and immediately parse its headers.Peel back annotated tags until a non-tag object is found.Methods in org.eclipse.jgit.revwalk that return types with arguments of type RevObjectModifier and TypeMethodDescriptionObjectReachabilityChecker.areAllReachable
(Collection<RevObject> targets, Stream<RevObject> starters) Checks that all targets are reachable from the starters.Methods in org.eclipse.jgit.revwalk with parameters of type RevObjectModifier and TypeMethodDescriptionvoid
Mark a root commit (i.e., one whose depth should be considered 0.)void
Mark an object or commit to start graph traversal from.void
ObjectWalk.markUninteresting
(RevObject o) Mark an object to not produce in the output.void
DepthWalk.ObjectWalk.markUnshallow
(RevObject c) Mark an element which used to be shallow in the client, but which should now be considered a full commit.void
Ensure the object's full body content is available.void
RevWalk.parseHeaders
(RevObject obj) Ensure the object's critical headers have been parsed.Peel back annotated tags until a non-tag object is found.boolean
ObjectWalk.VisitationPolicy.shouldVisit
(RevObject o) Whenever the rev or object walk reaches a Git object, if that object already exists as a RevObject, this method is called to determine if that object should be visited.void
Called when an object is visited.Method parameters in org.eclipse.jgit.revwalk with type arguments of type RevObjectModifier and TypeMethodDescriptionObjectReachabilityChecker.areAllReachable
(Collection<RevObject> targets, Stream<RevObject> starters) Checks that all targets are reachable from the starters.ObjectReachabilityChecker.areAllReachable
(Collection<RevObject> targets, Stream<RevObject> starters) Checks that all targets are reachable from the starters.