Uses of Class
org.eclipse.jgit.treewalk.TreeWalk
-
Packages that use TreeWalk Package Description org.eclipse.jgit.diff Comparing file contents by computing diffs.org.eclipse.jgit.merge Content and commit history merge algorithms.org.eclipse.jgit.revwalk Walking revision graphs (commit history).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 TreeWalk in org.eclipse.jgit.diff
Methods in org.eclipse.jgit.diff with parameters of type TreeWalk Modifier and Type Method Description static List<DiffEntry>DiffEntry. scan(TreeWalk walk)Convert the TreeWalk into DiffEntry headers.static List<DiffEntry>DiffEntry. scan(TreeWalk walk, boolean includeTrees)Convert the TreeWalk into DiffEntry headers, depending onincludeTreesit will add tree objects into result or not.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. -
Uses of TreeWalk in org.eclipse.jgit.merge
Methods in org.eclipse.jgit.merge with parameters of type TreeWalk Modifier and Type Method Description protected booleanResolveMerger. mergeTreeWalk(TreeWalk treeWalk, boolean ignoreConflicts)Process the given TreeWalk's entries. -
Uses of TreeWalk in org.eclipse.jgit.revwalk
Methods in org.eclipse.jgit.revwalk with parameters of type TreeWalk Modifier and Type Method Description booleanFollowFilter. include(TreeWalk walker) -
Uses of TreeWalk in org.eclipse.jgit.treewalk
Subclasses of TreeWalk in org.eclipse.jgit.treewalk Modifier and Type Class Description classNameConflictTreeWalkSpecialized TreeWalk to detect directory-file (D/F) name conflicts.Methods in org.eclipse.jgit.treewalk that return TreeWalk Modifier and Type Method Description static TreeWalkTreeWalk. forPath(ObjectReader reader, String path, AnyObjectId... trees)Open a tree walk and filter to exactly one path.static TreeWalkTreeWalk. forPath(Repository db, String path, AnyObjectId... trees)Open a tree walk and filter to exactly one path.static TreeWalkTreeWalk. forPath(Repository db, String path, RevTree tree)Open a tree walk and filter to exactly one path.Methods in org.eclipse.jgit.treewalk with parameters of type TreeWalk Modifier and Type Method Description voidWorkingTreeIterator. setDirCacheIterator(TreeWalk walk, int treeId)Define the matchingDirCacheIterator, to optimize ObjectIds. -
Uses of TreeWalk in org.eclipse.jgit.treewalk.filter
Methods in org.eclipse.jgit.treewalk.filter with parameters of type TreeWalk Modifier and Type Method Description intTreeFilterMarker. getMarks(TreeWalk walk)Test the filters against the walk.booleanIndexDiffFilter. include(TreeWalk tw)booleanInterIndexDiffFilter. include(TreeWalk walker)booleanNotIgnoredFilter. include(TreeWalk tw)booleanNotTreeFilter. include(TreeWalk walker)booleanPathFilter. include(TreeWalk walker)booleanPathSuffixFilter. include(TreeWalk walker)booleanSkipWorkTreeFilter. include(TreeWalk walker)abstract booleanTreeFilter. include(TreeWalk walker)Determine if the current entry is interesting to report.booleanPathFilter. isDone(TreeWalk walker)
-