Uses of Class
org.eclipse.jgit.revwalk.filter.RevFilter
Packages that use RevFilter
Package
Description
High-level API commands (the porcelain of JGit).
Walking revision graphs (commit history).
Filters for use in revision walking.
-
Uses of RevFilter in org.eclipse.jgit.api
Methods in org.eclipse.jgit.api with parameters of type RevFilterModifier and TypeMethodDescriptionLogCommand.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.revwalkModifier and TypeClassDescriptionclassA RevFilter that adds the visited commits tobitmapas a side effect.classA RevFilter that adds the visited commits tobitmapas a side effect.classA RevFilter that adds the visited commits tobitmapas a side effect.Methods in org.eclipse.jgit.internal.revwalk that return RevFilter -
Uses of RevFilter in org.eclipse.jgit.revwalk
Subclasses of RevFilter in org.eclipse.jgit.revwalkModifier and TypeClassDescriptionclassFilter applying aTreeFilteragainst changed paths in each commit.Methods in org.eclipse.jgit.revwalk that return RevFilterModifier and TypeMethodDescriptionTreeRevFilter.clone()RevWalk.getRevFilter()Get the currently configured commit filter.Methods in org.eclipse.jgit.revwalk with parameters of type RevFilterModifier and TypeMethodDescriptionvoidApply a flag to all commits matching the specified filter.voidApply 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.filterModifier and TypeClassDescriptionclassIncludes a commit only if all subfilters include the same commit.classSelects commits based upon the commit time field.classLimits the number of commits output.classIncludes a commit only if the subfilter does not include the commit.classIncludes a commit if any subfilters include the same commit.classAbstract filter that searches text using extended regular expressions.classMatches only commits with some/all RevFlags already set.classFilter that includes commits after a configured number are skipped.classAbstract filter that searches text using only substring search.Fields in org.eclipse.jgit.revwalk.filter declared as RevFilterModifier and TypeFieldDescriptionstatic final RevFilterRevFilter.ALLDefault filter that always returns true (thread safe).static final RevFilterRevFilter.MERGE_BASESelects only merge bases of the starting points (thread safe).static final RevFilterRevFilter.NO_MERGESExcludes commits with more than one parent (thread safe).static final RevFilterRevFilter.NONEDefault filter that always returns false (thread safe).static final 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 RevFilterModifier and TypeMethodDescriptionstatic final RevFilterCommitTimeRevFilter.after(long ts) Create a new filter to select commits after a given date/time.static final RevFilterCreate a new filter to select commits after a given date/time.static final RevFilterCommitTimeRevFilter.before(long ts) Create a new filter to select commits before a given date/time.static final RevFilterCreate a new filter to select commits before a given date/time.static final 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 final RevFilterCreate a new filter to select commits after or equal a given date/timesinceand before or equal a given date/timeuntil.CommitTimeRevFilter.clone()MaxCountRevFilter.clone()NotRevFilter.clone()abstract RevFilterRevFilter.clone()RevFlagFilter.clone()SkipRevFilter.clone()SubStringRevFilter.clone()static RevFilterAndRevFilter.create(Collection<RevFilter> list) Create a filter around many filters, all of which must match.static RevFilterCreate a filter around many filters, all of which must match.static RevFilterCreate a filter with two filters, both of which must match.static RevFilterCreate a new author filter.static RevFilterCreate a new committer filter.static RevFilterMaxCountRevFilter.create(int maxCount) Create a new max count filter.static RevFilterCreate a message filter.static RevFilterCreate 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 RevFilterCreate a filter around many filters, one of which must match.static RevFilterCreate a filter with two filters, one of which must match.static RevFilterSkipRevFilter.create(int skip) Create a new skip filter.static RevFilterCreate a new filter that tests for a single flag.static RevFilterCreate 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 RevFilterCreate 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.NotRevFilter.negate()Create a new filter that does the opposite of this filter.RevFilter.negate()Create a new filter that does the opposite of this filter.Methods in org.eclipse.jgit.revwalk.filter with parameters of type RevFilterModifier and TypeMethodDescriptionstatic RevFilterCreate a filter around many filters, all of which must match.static RevFilterCreate a filter with two filters, both of which must match.static RevFilterCreate a filter that negates the result of another filter.static RevFilterCreate a filter around many filters, one of which must match.static RevFilterCreate a filter with two filters, one of which must match.Method parameters in org.eclipse.jgit.revwalk.filter with type arguments of type RevFilterModifier and TypeMethodDescriptionstatic 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.