Uses of Class
org.eclipse.jgit.treewalk.filter.TreeFilter
Packages that use TreeFilter
Package
Description
High-level API commands (the porcelain of JGit).
Comparing file contents by computing diffs.
Core API for repository, config, refs, object database.
Walking revision graphs (commit history).
Git submodule support.
Walking and comparing directory/file trees (of commits, file system).
Filters for use in tree walking.
-
Uses of TreeFilter in org.eclipse.jgit.api
Methods in org.eclipse.jgit.api with parameters of type TreeFilterModifier and TypeMethodDescriptionDiffCommand.setPathFilter(TreeFilter pathFilter) Set path filter -
Uses of TreeFilter in org.eclipse.jgit.diff
Methods in org.eclipse.jgit.diff that return TreeFilterMethods in org.eclipse.jgit.diff with parameters of type TreeFilterModifier and TypeMethodDescriptionDiffEntry.scan(TreeWalk walk, boolean includeTrees, TreeFilter[] markTreeFilters) Convert the TreeWalk into DiffEntry headers, depending onincludeTreesit will add tree objects into result or not.voidDiffFormatter.setPathFilter(TreeFilter filter) Set the filter to produce only specific paths. -
Uses of TreeFilter in org.eclipse.jgit.lib
Methods in org.eclipse.jgit.lib with parameters of type TreeFilter -
Uses of TreeFilter in org.eclipse.jgit.revwalk
Subclasses of TreeFilter in org.eclipse.jgit.revwalkModifier and TypeClassDescriptionclassUpdates the internal path filter to follow copy/renames.Methods in org.eclipse.jgit.revwalk that return TreeFilterModifier and TypeMethodDescriptionFollowFilter.clone()Clone this tree filter, including its parameters.RevWalk.getTreeFilter()Get the tree filter used to simplify commits by modified paths.Methods in org.eclipse.jgit.revwalk with parameters of type TreeFilterModifier and TypeMethodDescriptionvoidRevWalk.setTreeFilter(TreeFilter newFilter) Set the tree filter used to simplify commits by modified paths.Constructors in org.eclipse.jgit.revwalk with parameters of type TreeFilterModifierConstructorDescriptionTreeRevFilter(RevWalk walker, TreeFilter t) Create aRevFilterfrom aTreeFilter. -
Uses of TreeFilter in org.eclipse.jgit.submodule
Methods in org.eclipse.jgit.submodule with parameters of type TreeFilter -
Uses of TreeFilter in org.eclipse.jgit.treewalk
Methods in org.eclipse.jgit.treewalk that return TreeFilterMethods in org.eclipse.jgit.treewalk with parameters of type TreeFilterModifier and TypeMethodDescriptionvoidTreeWalk.setFilter(TreeFilter newFilter) Set the tree entry filter for this walker. -
Uses of TreeFilter in org.eclipse.jgit.treewalk.filter
Subclasses of TreeFilter in org.eclipse.jgit.treewalk.filterModifier and TypeClassDescriptionclassIncludes a tree entry only if all subfilters include the same tree entry.classA performance optimized variant ofANY_DIFFwhich should be used when among the walked trees there is aDirCacheIteratorand aWorkingTreeIterator.final classA filter for extracting changes between two versions of the dircache.classSkipWorkingTreeIteratorentries that appear in gitignore files.classIncludes an entry only if the subfilter does not include the entry.classIncludes a tree entry if any subfilters include the same tree entry.classIncludes tree entries only if they match the configured path.classIncludes tree entries only if they end with the configured path (suffix match).classTo be used in combination with a DirCacheIterator: includes only tree entries for which 'skipWorkTree' flag is not set.Fields in org.eclipse.jgit.treewalk.filter declared as TreeFilterModifier and TypeFieldDescriptionstatic final TreeFilterTreeFilter.ALLSelects all tree entries.static final TreeFilterTreeFilter.ANY_DIFFSelects only tree entries which differ between at least 2 trees.static final TreeFilterInterIndexDiffFilter.INSTANCEPredefined InterIndexDiffFilter for finding changes between two dircachesMethods in org.eclipse.jgit.treewalk.filter that return TreeFilterModifier and TypeMethodDescriptionIndexDiffFilter.clone()Clone this tree filter, including its parameters.InterIndexDiffFilter.clone()Clone this tree filter, including its parameters.NotIgnoredFilter.clone()Clone this tree filter, including its parameters.NotTreeFilter.clone()Clone this tree filter, including its parameters.PathSuffixFilter.clone()Clone this tree filter, including its parameters.SkipWorkTreeFilter.clone()Clone this tree filter, including its parameters.abstract TreeFilterTreeFilter.clone()Clone this tree filter, including its parameters.static TreeFilterAndTreeFilter.create(Collection<TreeFilter> list) Create a filter around many filters, all of which must match.static TreeFilterAndTreeFilter.create(TreeFilter[] list) Create a filter around many filters, all of which must match.static TreeFilterAndTreeFilter.create(TreeFilter a, TreeFilter b) Create a filter with two filters, both of which must match.static TreeFilterNotTreeFilter.create(TreeFilter a) Create a filter that negates the result of another filter.static TreeFilterOrTreeFilter.create(Collection<TreeFilter> list) Create a filter around many filters, one of which must match.static TreeFilterOrTreeFilter.create(TreeFilter[] list) Create a filter around many filters, one of which must match.static TreeFilterOrTreeFilter.create(TreeFilter a, TreeFilter b) Create a filter with two filters, one of which must match.static TreeFilterPathFilterGroup.create(Collection<PathFilter> paths) Create a collection of path filters.static TreeFilterPathFilterGroup.createFromStrings(String... paths) Create a collection of path filters from Java strings.static TreeFilterPathFilterGroup.createFromStrings(Collection<String> paths) Create a collection of path filters from Java strings.NotTreeFilter.negate()Create a new filter that does the opposite of this filter.TreeFilter.negate()Create a new filter that does the opposite of this filter.Methods in org.eclipse.jgit.treewalk.filter with parameters of type TreeFilterModifier and TypeMethodDescriptionstatic TreeFilterAndTreeFilter.create(TreeFilter[] list) Create a filter around many filters, all of which must match.static TreeFilterAndTreeFilter.create(TreeFilter a, TreeFilter b) Create a filter with two filters, both of which must match.static TreeFilterNotTreeFilter.create(TreeFilter a) Create a filter that negates the result of another filter.static TreeFilterOrTreeFilter.create(TreeFilter[] list) Create a filter around many filters, one of which must match.static TreeFilterOrTreeFilter.create(TreeFilter a, TreeFilter b) Create a filter with two filters, one of which must match.Method parameters in org.eclipse.jgit.treewalk.filter with type arguments of type TreeFilterModifier and TypeMethodDescriptionstatic TreeFilterAndTreeFilter.create(Collection<TreeFilter> list) Create a filter around many filters, all of which must match.static TreeFilterOrTreeFilter.create(Collection<TreeFilter> list) Create a filter around many filters, one of which must match.Constructors in org.eclipse.jgit.treewalk.filter with parameters of type TreeFilterModifierConstructorDescriptionTreeFilterMarker(TreeFilter[] markTreeFilters) Construct a TreeFilterMarker.