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 RevFlag
BlameGenerator. SEEN
Indicates the commit was put into the queue at least once.Methods in org.eclipse.jgit.blame that return RevFlag Modifier and Type Method Description RevFlag
BlameGenerator. 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) void
Candidate. add(RevFlag flag)
(package private) void
Candidate.BlobCandidate. add(RevFlag flag)
(package private) void
Candidate.HeadCandidate. add(RevFlag flag)
(package private) boolean
Candidate.BlobCandidate. has(RevFlag flag)
(package private) boolean
Candidate. has(RevFlag flag)
(package private) boolean
Candidate.HeadCandidate. has(RevFlag flag)
(package private) void
Candidate.BlobCandidate. remove(RevFlag flag)
(package private) void
Candidate.HeadCandidate. remove(RevFlag flag)
(package private) void
Candidate. 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 RevFlag
DfsPackCompactor. added
private RevFlag
DfsPackCompactor. 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 class
RevFlag.StaticRevFlag
Fields in org.eclipse.jgit.revwalk declared as RevFlag Modifier and Type Field Description private RevFlag
DepthGenerator. DEEPEN_NOT
Commits reachable from commits that the client specified using --shallow-exclude.private RevFlag
DepthWalk.ObjectWalk. DEEPEN_NOT
private RevFlag
DepthWalk.RevWalk. DEEPEN_NOT
private RevFlag
DepthGenerator. REINTERESTING
Commits which the normal framework has marked as UNINTERESTING, but which we now care about again.private RevFlag
DepthWalk.ObjectWalk. REINTERESTING
private RevFlag
DepthWalk.RevWalk. REINTERESTING
static RevFlag
RevFlag. SEEN
Set on RevCommit instances added toRevWalk.pending
queue.static RevFlag
RevFlag. UNINTERESTING
Uninteresting byRevWalk.markUninteresting(RevCommit)
.private RevFlag
DepthGenerator. UNSHALLOW
Commits which used to be shallow in the client, but which are being extended as part of this fetch.private RevFlag
DepthWalk.ObjectWalk. UNSHALLOW
private RevFlag
DepthWalk.RevWalk. UNSHALLOW
Fields in org.eclipse.jgit.revwalk with type parameters of type RevFlag Modifier and Type Field Description private java.util.List<RevFlag>
RevFlagSet. active
Methods in org.eclipse.jgit.revwalk that return RevFlag Modifier and Type Method Description RevFlag
DepthWalk. getDeepenNotFlag()
RevFlag
DepthWalk.ObjectWalk. getDeepenNotFlag()
RevFlag
DepthWalk.RevWalk. getDeepenNotFlag()
RevFlag
DepthWalk. getReinterestingFlag()
Get flag marking commits that are interesting again.RevFlag
DepthWalk.ObjectWalk. getReinterestingFlag()
RevFlag
DepthWalk.RevWalk. getReinterestingFlag()
RevFlag
DepthWalk. getUnshallowFlag()
Get flag marking commits that should become unshallow.RevFlag
DepthWalk.ObjectWalk. getUnshallowFlag()
RevFlag
DepthWalk.RevWalk. getUnshallowFlag()
RevFlag
RevWalk. 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 void
AbstractRevQueue. add(RevCommit c, RevFlag queueControl)
Add a commit if it does not have a flag set yet, then set the flag.boolean
RevFlagSet. add(RevFlag flag)
void
RevObject. add(RevFlag flag)
Add a flag to this object.void
AbstractRevQueue. addParents(RevCommit c, RevFlag queueControl)
Add a commit's parents if one does not have a flag set yet.void
RevCommitList. applyFlag(RevFilter matching, RevFlag flag)
Apply a flag to all commits matching the specified filter.void
RevCommitList. applyFlag(RevFilter matching, RevFlag flag, int rangeBegin, int rangeEnd)
Apply a flag to all commits matching the specified filter.void
RevCommit. carry(RevFlag flag)
Carry a RevFlag set on this commit to its parents.void
RevWalk. carry(RevFlag flag)
Automatically carry a flag from a child commit to its parents.void
RevCommitList. clearFlag(RevFlag flag)
Remove the given flag from all commits.void
RevCommitList. clearFlag(RevFlag flag, int rangeBegin, int rangeEnd)
Remove the given flag from all commits.void
RevWalk. disposeFlag(RevFlag flag)
Allow a flag to be recycled for a different use.boolean
RevObject. has(RevFlag flag)
Test to see if the flag has been set on this object.int
RevCommitList. indexOf(RevFlag flag, int begin)
Find the next commit that has the given flag set.int
RevCommitList. lastIndexOf(RevFlag flag, int begin)
Find the next commit that has the given flag set.void
RevObject. remove(RevFlag flag)
Remove a flag from this object.void
RevWalk. resetRetain(RevFlag... retainFlags)
Resets internal state and allows this instance to be used again.void
RevWalk. retainOnReset(RevFlag flag)
Preserve a RevFlag during allreset
methods.Method parameters in org.eclipse.jgit.revwalk with type arguments of type RevFlag Modifier and Type Method Description void
RevWalk. carry(java.util.Collection<RevFlag> set)
Automatically carry flags from a child commit to its parents.void
RevWalk. retainOnReset(java.util.Collection<RevFlag> flags)
Preserve a set of RevFlags during allreset
methods.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 RevFilter
RevFlagFilter. has(RevFlag a)
Create a new filter that tests for a single flag.static RevFilter
RevFlagFilter. hasAll(RevFlag... a)
Create a new filter that tests all flags in a set.static RevFilter
RevFlagFilter. 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) RevFlag
BasePackFetchConnection. ADVERTISED
Marks a commit listed in the advertised refs.(package private) RevFlag
BasePackFetchConnection. COMMON
Marks a commit known to both sides of the connection.private RevFlag
UploadPack. COMMON
Marked on objects inUploadPack.commonBase
.private RevFlag
WalkFetchConnection. COMPLETE
Objects whose direct dependents we know we have (or will have).private RevFlag
WalkFetchConnection. IN_WORK_QUEUE
Objects that have already enteredWalkFetchConnection.workQueue
.private RevFlag
WalkFetchConnection. LOCALLY_SEEN
Commits that have already enteredWalkFetchConnection.localCommitQueue
.private RevFlag
UploadPack. PEER_HAS
Marked on objects both we and the client have.(package private) RevFlag
BasePackFetchConnection. REACHABLE
Marks an object as having all its dependencies.private RevFlag
UploadPack. SATISFIED
Objects where we found a path from the want list to a common base.private RevFlag
BasePackFetchConnection. STATE
LikeBasePackFetchConnection.COMMON
but means its also inBasePackFetchConnection.pckState
.private RevFlag
UploadPack. WANT
Marked on objects the client has asked us to give them.
-