Package org.eclipse.jgit.revwalk
Class BoundaryGenerator
- java.lang.Object
-
- org.eclipse.jgit.revwalk.Generator
-
- org.eclipse.jgit.revwalk.BoundaryGenerator
-
class BoundaryGenerator extends Generator
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private classBoundaryGenerator.InitialGenerator
-
Field Summary
Fields Modifier and Type Field Description (package private) Generatorg(package private) static intUNINTERESTING-
Fields inherited from class org.eclipse.jgit.revwalk.Generator
firstParent, HAS_REWRITE, HAS_UNINTERESTING, NEEDS_REWRITE, SORT_COMMIT_TIME_DESC, SORT_TOPO
-
-
Constructor Summary
Constructors Constructor Description BoundaryGenerator(RevWalk w, Generator s)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) RevCommitnext()Return the next commit to the application, or the next generator.(package private) intoutputType()Obtain flags describing the output behavior of this generator.(package private) voidshareFreeList(BlockRevQueue q)Connect the supplied queue to this generator's own free list (if any).
-
-
-
Field Detail
-
UNINTERESTING
static final int UNINTERESTING
- See Also:
- Constant Field Values
-
g
Generator g
-
-
Method Detail
-
outputType
int outputType()
Description copied from class:GeneratorObtain flags describing the output behavior of this generator.- Specified by:
outputTypein classGenerator- Returns:
- one or more of the constants declared in this class, describing how this generator produces its results.
-
shareFreeList
void shareFreeList(BlockRevQueue q)
Description copied from class:GeneratorConnect the supplied queue to this generator's own free list (if any).- Overrides:
shareFreeListin classGenerator- Parameters:
q- another FIFO queue that wants to share our queue's free list.
-
next
RevCommit next() throws MissingObjectException, IncorrectObjectTypeException, java.io.IOException
Description copied from class:GeneratorReturn the next commit to the application, or the next generator.- Specified by:
nextin classGenerator- Returns:
- next available commit; null if no more are to be returned.
- Throws:
MissingObjectExceptionIncorrectObjectTypeExceptionjava.io.IOException
-
-