Uses of Class
org.eclipse.jgit.revwalk.Generator
-
Packages that use Generator Package Description org.eclipse.jgit.revwalk Walking revision graphs (commit history). -
-
Uses of Generator in org.eclipse.jgit.revwalk
Subclasses of Generator in org.eclipse.jgit.revwalk Modifier and Type Class Description (package private) class
AbstractRevQueue
private static class
AbstractRevQueue.AlwaysEmptyQueue
(package private) class
BlockRevQueue
(package private) class
BoundaryGenerator
private class
BoundaryGenerator.InitialGenerator
class
DateRevQueue
A queue of commits sorted by commit time order.(package private) class
DelayRevQueue
Delays commits to be at leastPendingGenerator.OVER_SCAN
late.(package private) class
DepthGenerator
Only produce commits which are below a specified depth.(package private) class
EndGenerator
class
FIFORevQueue
A queue of commits in FIFO order.(package private) class
FixUninterestingGenerator
Filters out commits markedRevWalk.UNINTERESTING
.class
LIFORevQueue
A queue of commits in LIFO order.(package private) class
MergeBaseGenerator
Computes the merge base(s) of the starting commits.(package private) class
PendingGenerator
Default (and first pass) RevCommit Generator implementation for RevWalk.(package private) class
RewriteGenerator
Replaces a RevCommit's parents until not colored with REWRITE.(package private) class
StartGenerator
Initial RevWalk generator that bootstraps a new walk.(package private) class
TopoNonIntermixSortGenerator
Sorts commits in topological order without intermixing lines of history.(package private) class
TopoSortGenerator
Sorts commits in topological order.Fields in org.eclipse.jgit.revwalk declared as Generator Modifier and Type Field Description (package private) Generator
BoundaryGenerator. g
private Generator
DelayRevQueue. pending
private Generator
FixUninterestingGenerator. pending
(package private) Generator
RevWalk. pending
private Generator
BoundaryGenerator.InitialGenerator. source
private Generator
RewriteGenerator. source
Constructors in org.eclipse.jgit.revwalk with parameters of type Generator Constructor Description BlockRevQueue(Generator s)
BoundaryGenerator(RevWalk w, Generator s)
DateRevQueue(Generator s)
DelayRevQueue(Generator g)
DepthGenerator(DepthWalk w, Generator s)
FIFORevQueue(Generator s)
FixUninterestingGenerator(Generator g)
InitialGenerator(RevWalk w, Generator s)
LIFORevQueue(Generator s)
RewriteGenerator(Generator s)
TopoNonIntermixSortGenerator(Generator s)
Create a new sorter and completely spin the generator.TopoSortGenerator(Generator s)
Create a new sorter and completely spin the generator.
-