Uses of Class
org.eclipse.jgit.revwalk.RevObject
-
Packages that use RevObject Package Description org.eclipse.jgit.api High-level API commands (the porcelain of JGit).org.eclipse.jgit.internal.revwalk org.eclipse.jgit.internal.storage.pack Reading/writing Git pack files.org.eclipse.jgit.lib Core API for repository, config, refs, object database.org.eclipse.jgit.merge Content and commit history merge algorithms.org.eclipse.jgit.revplot Building/rendering revision graphs.org.eclipse.jgit.revwalk Walking revision graphs (commit history). -
-
Uses of RevObject in org.eclipse.jgit.api
Methods in org.eclipse.jgit.api that return RevObject Modifier and Type Method Description RevObjectVerificationResult. getObject()Retrieves the git object of which the signature was verified.RevObjectTagCommand. getObjectId()Get the tag's object idMethods in org.eclipse.jgit.api with parameters of type RevObject Modifier and Type Method Description AddNoteCommandAddNoteCommand. setObjectId(RevObject id)Sets the object id of object you want a note on.RemoveNoteCommandRemoveNoteCommand. setObjectId(RevObject id)Sets the object id of object you want to remove a noteShowNoteCommandShowNoteCommand. setObjectId(RevObject id)Sets the object id of object you want a note onTagCommandTagCommand. 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 RevObject Modifier and Type Method Description Optional<RevObject>BitmappedObjectReachabilityChecker. areAllReachable(Collection<RevObject> targets, Stream<RevObject> starters)Checks that all targets are reachable from the starters.Optional<RevObject>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 RevObject Modifier and Type Method Description Optional<RevObject>BitmappedObjectReachabilityChecker. areAllReachable(Collection<RevObject> targets, Stream<RevObject> starters)Checks that all targets are reachable from the starters.Optional<RevObject>BitmappedObjectReachabilityChecker. areAllReachable(Collection<RevObject> targets, Stream<RevObject> starters)Checks that all targets are reachable from the starters.Optional<RevObject>PedestrianObjectReachabilityChecker. areAllReachable(Collection<RevObject> targets, Stream<RevObject> starters)Checks that all targets are reachable from the starters.Optional<RevObject>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 RevObject Modifier and Type Method Description voidPackWriter. addObject(RevObject object)Include one object to the output file.Method parameters in org.eclipse.jgit.internal.storage.pack with type arguments of type RevObject Modifier and Type Method Description voidPackWriter. 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 RevObject Modifier and Type Method Description voidTagBuilder. setObjectId(RevObject obj)Set the object this tag refers to, and infer its type.GpgSignatureVerifier.SignatureVerificationGpgSignatureVerifier. 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 RevObject Modifier and Type Field Description protected RevObject[]Merger. sourceObjectsThe 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.revplot Modifier and Type Class Description classPlotCommit<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 RevObject Modifier and Type Class Description classRevObjectList<E extends RevObject>An ordered list ofRevObjectsubclasses.Subclasses of RevObject in org.eclipse.jgit.revwalk Modifier and Type Class Description static classDepthWalk.CommitRevCommit with a depth (in commits) from a root.classRevBlobA binary file, or a symbolic link.classRevCommitA commit reference to a commit in the DAG.classRevTagAn annotated tag.classRevTreeA reference to a tree of subtrees/files.Methods in org.eclipse.jgit.revwalk that return RevObject Modifier and Type Method Description RevObjectRevTag. getObject()Get a reference to the object this tag was placed on.RevObjectRevWalk. lookupAny(AnyObjectId id, int type)Locate a reference to any object without loading it.RevObjectRevWalk. lookupOrNull(AnyObjectId id)Locate an object that was previously allocated in this walk.RevObjectAsyncRevObjectQueue. next()Obtain the next object.RevObjectObjectWalk. nextObject()Pop the next most recent object.RevObjectRevWalk. parseAny(AnyObjectId id)Locate a reference to any object and immediately parse its headers.RevObjectRevWalk. peel(RevObject obj)Peel back annotated tags until a non-tag object is found.Methods in org.eclipse.jgit.revwalk that return types with arguments of type RevObject Modifier and Type Method Description Optional<RevObject>ObjectReachabilityChecker. 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 RevObject Modifier and Type Method Description voidDepthWalk.ObjectWalk. markRoot(RevObject o)Mark a root commit (i.e., one whose depth should be considered 0.)voidObjectWalk. markStart(RevObject o)Mark an object or commit to start graph traversal from.voidObjectWalk. markUninteresting(RevObject o)Mark an object to not produce in the output.voidDepthWalk.ObjectWalk. markUnshallow(RevObject c)Mark an element which used to be shallow in the client, but which should now be considered a full commit.voidRevWalk. parseBody(RevObject obj)Ensure the object's full body content is available.voidRevWalk. parseHeaders(RevObject obj)Ensure the object's critical headers have been parsed.RevObjectRevWalk. peel(RevObject obj)Peel back annotated tags until a non-tag object is found.booleanObjectWalk.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.voidObjectWalk.VisitationPolicy. visited(RevObject o)Called when an object is visited.Method parameters in org.eclipse.jgit.revwalk with type arguments of type RevObject Modifier and Type Method Description Optional<RevObject>ObjectReachabilityChecker. areAllReachable(Collection<RevObject> targets, Stream<RevObject> starters)Checks that all targets are reachable from the starters.Optional<RevObject>ObjectReachabilityChecker. areAllReachable(Collection<RevObject> targets, Stream<RevObject> starters)Checks that all targets are reachable from the starters.
-