Uses of Class
org.eclipse.jgit.revwalk.RevFlag
-
Packages that use RevFlag Package Description org.eclipse.jgit.blame Computing blame/annotate information of files.org.eclipse.jgit.internal.storage.dfs Distributed file system based repository storage.org.eclipse.jgit.revwalk Walking revision graphs (commit history).org.eclipse.jgit.revwalk.filter Filters for use in revision walking.org.eclipse.jgit.transport Transport (fetch/push) for different protocols. -
-
Uses of RevFlag in org.eclipse.jgit.blame
Fields in org.eclipse.jgit.blame declared as RevFlag Modifier and Type Field Description private RevFlagBlameGenerator. SEENIndicates the commit was put into the queue at least once.Methods in org.eclipse.jgit.blame that return RevFlag Modifier and Type Method Description RevFlagBlameGenerator. newFlag(java.lang.String name)Allocate a new RevFlag for use by the caller.Methods in org.eclipse.jgit.blame with parameters of type RevFlag Modifier and Type Method Description (package private) voidCandidate. add(RevFlag flag)(package private) voidCandidate.BlobCandidate. add(RevFlag flag)(package private) voidCandidate.HeadCandidate. add(RevFlag flag)(package private) booleanCandidate.BlobCandidate. has(RevFlag flag)(package private) booleanCandidate. has(RevFlag flag)(package private) booleanCandidate.HeadCandidate. has(RevFlag flag)(package private) voidCandidate.BlobCandidate. remove(RevFlag flag)(package private) voidCandidate.HeadCandidate. remove(RevFlag flag)(package private) voidCandidate. remove(RevFlag flag) -
Uses of RevFlag in org.eclipse.jgit.internal.storage.dfs
Fields in org.eclipse.jgit.internal.storage.dfs declared as RevFlag Modifier and Type Field Description private RevFlagDfsPackCompactor. addedprivate RevFlagDfsPackCompactor. isBase -
Uses of RevFlag in org.eclipse.jgit.revwalk
Subclasses of RevFlag in org.eclipse.jgit.revwalk Modifier and Type Class Description (package private) static classRevFlag.StaticRevFlagFields in org.eclipse.jgit.revwalk declared as RevFlag Modifier and Type Field Description private RevFlagDepthGenerator. DEEPEN_NOTCommits reachable from commits that the client specified using --shallow-exclude.private RevFlagDepthWalk.ObjectWalk. DEEPEN_NOTprivate RevFlagDepthWalk.RevWalk. DEEPEN_NOTprivate RevFlagDepthGenerator. REINTERESTINGCommits which the normal framework has marked as UNINTERESTING, but which we now care about again.private RevFlagDepthWalk.ObjectWalk. REINTERESTINGprivate RevFlagDepthWalk.RevWalk. REINTERESTINGstatic RevFlagRevFlag. SEENSet on RevCommit instances added toRevWalk.pendingqueue.static RevFlagRevFlag. UNINTERESTINGUninteresting byRevWalk.markUninteresting(RevCommit).private RevFlagDepthGenerator. UNSHALLOWCommits which used to be shallow in the client, but which are being extended as part of this fetch.private RevFlagDepthWalk.ObjectWalk. UNSHALLOWprivate RevFlagDepthWalk.RevWalk. UNSHALLOWFields in org.eclipse.jgit.revwalk with type parameters of type RevFlag Modifier and Type Field Description private java.util.List<RevFlag>RevFlagSet. activeMethods in org.eclipse.jgit.revwalk that return RevFlag Modifier and Type Method Description RevFlagDepthWalk. getDeepenNotFlag()RevFlagDepthWalk.ObjectWalk. getDeepenNotFlag()RevFlagDepthWalk.RevWalk. getDeepenNotFlag()RevFlagDepthWalk. getReinterestingFlag()Get flag marking commits that are interesting again.RevFlagDepthWalk.ObjectWalk. getReinterestingFlag()RevFlagDepthWalk.RevWalk. getReinterestingFlag()RevFlagDepthWalk. getUnshallowFlag()Get flag marking commits that should become unshallow.RevFlagDepthWalk.ObjectWalk. getUnshallowFlag()RevFlagDepthWalk.RevWalk. getUnshallowFlag()RevFlagRevWalk. newFlag(java.lang.String name)Create a new flag for application use during walking.Methods in org.eclipse.jgit.revwalk that return types with arguments of type RevFlag Modifier and Type Method Description java.util.Iterator<RevFlag>RevFlagSet. iterator()Methods in org.eclipse.jgit.revwalk with parameters of type RevFlag Modifier and Type Method Description voidAbstractRevQueue. add(RevCommit c, RevFlag queueControl)Add a commit if it does not have a flag set yet, then set the flag.booleanRevFlagSet. add(RevFlag flag)voidRevObject. add(RevFlag flag)Add a flag to this object.voidAbstractRevQueue. addParents(RevCommit c, RevFlag queueControl)Add a commit's parents if one does not have a flag set yet.voidRevCommitList. applyFlag(RevFilter matching, RevFlag flag)Apply a flag to all commits matching the specified filter.voidRevCommitList. applyFlag(RevFilter matching, RevFlag flag, int rangeBegin, int rangeEnd)Apply a flag to all commits matching the specified filter.voidRevCommit. carry(RevFlag flag)Carry a RevFlag set on this commit to its parents.voidRevWalk. carry(RevFlag flag)Automatically carry a flag from a child commit to its parents.voidRevCommitList. clearFlag(RevFlag flag)Remove the given flag from all commits.voidRevCommitList. clearFlag(RevFlag flag, int rangeBegin, int rangeEnd)Remove the given flag from all commits.voidRevWalk. disposeFlag(RevFlag flag)Allow a flag to be recycled for a different use.booleanRevObject. has(RevFlag flag)Test to see if the flag has been set on this object.intRevCommitList. indexOf(RevFlag flag, int begin)Find the next commit that has the given flag set.intRevCommitList. lastIndexOf(RevFlag flag, int begin)Find the next commit that has the given flag set.voidRevObject. remove(RevFlag flag)Remove a flag from this object.voidRevWalk. resetRetain(RevFlag... retainFlags)Resets internal state and allows this instance to be used again.voidRevWalk. retainOnReset(RevFlag flag)Preserve a RevFlag during allresetmethods.Method parameters in org.eclipse.jgit.revwalk with type arguments of type RevFlag Modifier and Type Method Description voidRevWalk. carry(java.util.Collection<RevFlag> set)Automatically carry flags from a child commit to its parents.voidRevWalk. retainOnReset(java.util.Collection<RevFlag> flags)Preserve a set of RevFlags during allresetmethods.Constructor parameters in org.eclipse.jgit.revwalk with type arguments of type RevFlag Constructor Description RevFlagSet(java.util.Collection<RevFlag> s)Create a set of flags, copied from an existing collection. -
Uses of RevFlag in org.eclipse.jgit.revwalk.filter
Methods in org.eclipse.jgit.revwalk.filter with parameters of type RevFlag Modifier and Type Method Description static RevFilterRevFlagFilter. has(RevFlag a)Create a new filter that tests for a single flag.static RevFilterRevFlagFilter. hasAll(RevFlag... a)Create a new filter that tests all flags in a set.static RevFilterRevFlagFilter. hasAny(RevFlag... a)Create a new filter that tests for any flag in a set. -
Uses of RevFlag in org.eclipse.jgit.transport
Fields in org.eclipse.jgit.transport declared as RevFlag Modifier and Type Field Description (package private) RevFlagBasePackFetchConnection. ADVERTISEDMarks a commit listed in the advertised refs.(package private) RevFlagBasePackFetchConnection. COMMONMarks a commit known to both sides of the connection.private RevFlagUploadPack. COMMONMarked on objects inUploadPack.commonBase.private RevFlagWalkFetchConnection. COMPLETEObjects whose direct dependents we know we have (or will have).private RevFlagWalkFetchConnection. IN_WORK_QUEUEObjects that have already enteredWalkFetchConnection.workQueue.private RevFlagWalkFetchConnection. LOCALLY_SEENCommits that have already enteredWalkFetchConnection.localCommitQueue.private RevFlagUploadPack. PEER_HASMarked on objects both we and the client have.(package private) RevFlagBasePackFetchConnection. REACHABLEMarks an object as having all its dependencies.private RevFlagUploadPack. SATISFIEDObjects where we found a path from the want list to a common base.private RevFlagBasePackFetchConnection. STATELikeBasePackFetchConnection.COMMONbut means its also inBasePackFetchConnection.pckState.private RevFlagUploadPack. WANTMarked on objects the client has asked us to give them.
-