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.revwalk Walking revision graphs (commit history).org.eclipse.jgit.revwalk.filter Filters for use in revision walking. -
-
Uses of RevFlag in org.eclipse.jgit.blame
Methods in org.eclipse.jgit.blame that return RevFlag Modifier and Type Method Description RevFlagBlameGenerator. newFlag(String name)Allocate a new RevFlag for use by the caller. -
Uses of RevFlag in org.eclipse.jgit.revwalk
Fields in org.eclipse.jgit.revwalk declared as RevFlag Modifier and Type Field Description static RevFlagRevFlag. SEENSet on RevCommit instances added toRevWalk.pendingqueue.static RevFlagRevFlag. UNINTERESTINGUninteresting byRevWalk.markUninteresting(RevCommit).Methods 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(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 Iterator<RevFlag>RevFlagSet. iterator()Methods in org.eclipse.jgit.revwalk with parameters of type RevFlag Modifier and Type Method Description booleanRevFlagSet. add(RevFlag flag)voidRevObject. add(RevFlag flag)Add a flag to this object.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(Collection<RevFlag> set)Automatically carry flags from a child commit to its parents.voidRevWalk. retainOnReset(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(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.
-