Uses of Class
org.eclipse.jgit.revwalk.filter.RevFilter
-
Packages that use RevFilter Package Description org.eclipse.jgit.api High-level API commands (the porcelain of JGit).org.eclipse.jgit.internal.revwalk org.eclipse.jgit.revwalk Walking revision graphs (commit history).org.eclipse.jgit.revwalk.filter Filters for use in revision walking. -
-
Uses of RevFilter in org.eclipse.jgit.api
Methods in org.eclipse.jgit.api with parameters of type RevFilter Modifier and Type Method Description LogCommandLogCommand. setRevFilter(RevFilter aFilter)Set a filter for theLogCommand. -
Uses of RevFilter in org.eclipse.jgit.internal.revwalk
Subclasses of RevFilter in org.eclipse.jgit.internal.revwalk Modifier and Type Class Description classAddToBitmapFilterA RevFilter that adds the visited commits tobitmapas a side effect.classAddToBitmapWithCacheFilterA RevFilter that adds the visited commits tobitmapas a side effect.classAddUnseenToBitmapFilterA RevFilter that adds the visited commits tobitmapas a side effect.Methods in org.eclipse.jgit.internal.revwalk that return RevFilter Modifier and Type Method Description RevFilterAddToBitmapFilter. clone()RevFilterAddToBitmapWithCacheFilter. clone()RevFilterAddUnseenToBitmapFilter. clone() -
Uses of RevFilter in org.eclipse.jgit.revwalk
Subclasses of RevFilter in org.eclipse.jgit.revwalk Modifier and Type Class Description classTreeRevFilterFilter applying aTreeFilteragainst changed paths in each commit.Methods in org.eclipse.jgit.revwalk that return RevFilter Modifier and Type Method Description RevFilterTreeRevFilter. clone()RevFilterRevWalk. getRevFilter()Get the currently configured commit filter.Methods in org.eclipse.jgit.revwalk with parameters of type RevFilter Modifier and Type Method Description 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.voidRevWalk. setRevFilter(RevFilter newFilter)Set the commit filter for this walker. -
Uses of RevFilter in org.eclipse.jgit.revwalk.filter
Subclasses of RevFilter in org.eclipse.jgit.revwalk.filter Modifier and Type Class Description classAndRevFilterIncludes a commit only if all subfilters include the same commit.classCommitTimeRevFilterSelects commits based upon the commit time field.classMaxCountRevFilterLimits the number of commits output.classNotRevFilterIncludes a commit only if the subfilter does not include the commit.classOrRevFilterIncludes a commit if any subfilters include the same commit.classPatternMatchRevFilterAbstract filter that searches text using extended regular expressions.classRevFlagFilterMatches only commits with some/all RevFlags already set.classSkipRevFilterFilter that includes commits after a configured number are skipped.classSubStringRevFilterAbstract filter that searches text using only substring search.Fields in org.eclipse.jgit.revwalk.filter declared as RevFilter Modifier and Type Field Description static RevFilterRevFilter. ALLDefault filter that always returns true (thread safe).static RevFilterRevFilter. MERGE_BASESelects only merge bases of the starting points (thread safe).static RevFilterRevFilter. NO_MERGESExcludes commits with more than one parent (thread safe).static RevFilterRevFilter. NONEDefault filter that always returns false (thread safe).static RevFilterRevFilter. ONLY_MERGESFilter including only merge commits, excluding all commits with less than two parents (thread safe).Methods in org.eclipse.jgit.revwalk.filter that return RevFilter Modifier and Type Method Description static RevFilterCommitTimeRevFilter. after(long ts)Create a new filter to select commits after a given date/time.static RevFilterCommitTimeRevFilter. after(Date ts)Create a new filter to select commits after a given date/time.static RevFilterCommitTimeRevFilter. before(long ts)Create a new filter to select commits before a given date/time.static RevFilterCommitTimeRevFilter. before(Date ts)Create a new filter to select commits before a given date/time.static RevFilterCommitTimeRevFilter. between(long since, long until)Create a new filter to select commits after or equal a given date/timesinceand before or equal a given date/timeuntil.static RevFilterCommitTimeRevFilter. between(Date since, Date until)Create a new filter to select commits after or equal a given date/timesinceand before or equal a given date/timeuntil.RevFilterCommitTimeRevFilter. clone()RevFilterMaxCountRevFilter. clone()RevFilterNotRevFilter. clone()abstract RevFilterRevFilter. clone()RevFilterRevFlagFilter. clone()RevFilterSkipRevFilter. clone()RevFilterSubStringRevFilter. clone()static RevFilterAndRevFilter. create(Collection<RevFilter> list)Create a filter around many filters, all of which must match.static RevFilterAndRevFilter. create(RevFilter[] list)Create a filter around many filters, all of which must match.static RevFilterAndRevFilter. create(RevFilter a, RevFilter b)Create a filter with two filters, both of which must match.static RevFilterAuthorRevFilter. create(String pattern)Create a new author filter.static RevFilterCommitterRevFilter. create(String pattern)Create a new committer filter.static RevFilterMaxCountRevFilter. create(int maxCount)Create a new max count filter.static RevFilterMessageRevFilter. create(String pattern)Create a message filter.static RevFilterNotRevFilter. create(RevFilter a)Create a filter that negates the result of another filter.static RevFilterOrRevFilter. create(Collection<RevFilter> list)Create a filter around many filters, one of which must match.static RevFilterOrRevFilter. create(RevFilter[] list)Create a filter around many filters, one of which must match.static RevFilterOrRevFilter. create(RevFilter a, RevFilter b)Create a filter with two filters, one of which must match.static RevFilterSkipRevFilter. create(int skip)Create a new skip filter.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. hasAll(RevFlagSet 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.static RevFilterRevFlagFilter. hasAny(RevFlagSet a)Create a new filter that tests for any flag in a set.RevFilterNotRevFilter. negate()Create a new filter that does the opposite of this filter.RevFilterRevFilter. negate()Create a new filter that does the opposite of this filter.Methods in org.eclipse.jgit.revwalk.filter with parameters of type RevFilter Modifier and Type Method Description static RevFilterAndRevFilter. create(RevFilter[] list)Create a filter around many filters, all of which must match.static RevFilterAndRevFilter. create(RevFilter a, RevFilter b)Create a filter with two filters, both of which must match.static RevFilterNotRevFilter. create(RevFilter a)Create a filter that negates the result of another filter.static RevFilterOrRevFilter. create(RevFilter[] list)Create a filter around many filters, one of which must match.static RevFilterOrRevFilter. create(RevFilter a, RevFilter b)Create a filter with two filters, one of which must match.Method parameters in org.eclipse.jgit.revwalk.filter with type arguments of type RevFilter Modifier and Type Method Description static RevFilterAndRevFilter. create(Collection<RevFilter> list)Create a filter around many filters, all of which must match.static RevFilterOrRevFilter. create(Collection<RevFilter> list)Create a filter around many filters, one of which must match.
-