Uses of Class
org.eclipse.jgit.treewalk.filter.TreeFilter
-
Packages that use TreeFilter Package Description org.eclipse.jgit.api High-level API commands (the porcelain of JGit).org.eclipse.jgit.diff Comparing file contents by computing diffs.org.eclipse.jgit.lib Core API for repository, config, refs, object database.org.eclipse.jgit.revwalk Walking revision graphs (commit history).org.eclipse.jgit.submodule Git submodule support.org.eclipse.jgit.treewalk Walking and comparing directory/file trees (of commits, file system).org.eclipse.jgit.treewalk.filter Filters for use in tree walking. -
-
Uses of TreeFilter in org.eclipse.jgit.api
Methods in org.eclipse.jgit.api with parameters of type TreeFilter Modifier and Type Method Description DiffCommandDiffCommand. setPathFilter(TreeFilter pathFilter)Set path filter -
Uses of TreeFilter in org.eclipse.jgit.diff
Methods in org.eclipse.jgit.diff that return TreeFilter Modifier and Type Method Description TreeFilterDiffFormatter. getPathFilter()Get path filterMethods in org.eclipse.jgit.diff with parameters of type TreeFilter Modifier and Type Method Description static List<DiffEntry>DiffEntry. 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 Modifier and Type Method Description voidIndexDiff. setFilter(TreeFilter filter)Sets a filter. -
Uses of TreeFilter in org.eclipse.jgit.revwalk
Subclasses of TreeFilter in org.eclipse.jgit.revwalk Modifier and Type Class Description classFollowFilterUpdates the internal path filter to follow copy/renames.Methods in org.eclipse.jgit.revwalk that return TreeFilter Modifier and Type Method Description TreeFilterFollowFilter. clone()Clone this tree filter, including its parameters.TreeFilterRevWalk. getTreeFilter()Get the tree filter used to simplify commits by modified paths.Methods in org.eclipse.jgit.revwalk with parameters of type TreeFilter Modifier and Type Method Description voidRevWalk. setTreeFilter(TreeFilter newFilter)Set the tree filter used to simplify commits by modified paths.Constructors in org.eclipse.jgit.revwalk with parameters of type TreeFilter Constructor Description TreeRevFilter(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 Modifier and Type Method Description SubmoduleWalkSubmoduleWalk. setFilter(TreeFilter filter)Set tree filter -
Uses of TreeFilter in org.eclipse.jgit.treewalk
Methods in org.eclipse.jgit.treewalk that return TreeFilter Modifier and Type Method Description TreeFilterTreeWalk. getFilter()Get the currently configured filter.Methods in org.eclipse.jgit.treewalk with parameters of type TreeFilter Modifier and Type Method Description voidTreeWalk. 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.filter Modifier and Type Class Description classAndTreeFilterIncludes a tree entry only if all subfilters include the same tree entry.classIndexDiffFilterA performance optimized variant ofANY_DIFFwhich should be used when among the walked trees there is aDirCacheIteratorand aWorkingTreeIterator.classInterIndexDiffFilterA filter for extracting changes between two versions of the dircache.classNotIgnoredFilterSkipWorkingTreeIteratorentries that appear in gitignore files.classNotTreeFilterIncludes an entry only if the subfilter does not include the entry.classOrTreeFilterIncludes a tree entry if any subfilters include the same tree entry.classPathFilterIncludes tree entries only if they match the configured path.classPathSuffixFilterIncludes tree entries only if they end with the configured path (suffix match).classSkipWorkTreeFilterTo 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 TreeFilter Modifier and Type Field Description static TreeFilterTreeFilter. ALLSelects all tree entries.static TreeFilterTreeFilter. ANY_DIFFSelects only tree entries which differ between at least 2 trees.static TreeFilterInterIndexDiffFilter. INSTANCEPredefined InterIndexDiffFilter for finding changes between two dircachesMethods in org.eclipse.jgit.treewalk.filter that return TreeFilter Modifier and Type Method Description TreeFilterIndexDiffFilter. clone()Clone this tree filter, including its parameters.TreeFilterInterIndexDiffFilter. clone()Clone this tree filter, including its parameters.TreeFilterNotIgnoredFilter. clone()Clone this tree filter, including its parameters.TreeFilterNotTreeFilter. clone()Clone this tree filter, including its parameters.TreeFilterPathSuffixFilter. clone()Clone this tree filter, including its parameters.TreeFilterSkipWorkTreeFilter. 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.TreeFilterNotTreeFilter. negate()Create a new filter that does the opposite of this filter.TreeFilterTreeFilter. negate()Create a new filter that does the opposite of this filter.Methods in org.eclipse.jgit.treewalk.filter with parameters of type TreeFilter Modifier and Type Method Description 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(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 TreeFilter Modifier and Type Method Description static 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 TreeFilter Constructor Description TreeFilterMarker(TreeFilter[] markTreeFilters)Construct a TreeFilterMarker.
-