Uses of Class
org.eclipse.jgit.treewalk.TreeWalk
-
Packages that use TreeWalk Package Description org.eclipse.jgit.api High-level API commands (the porcelain of JGit).org.eclipse.jgit.attributes Support for reading .gitattributes.org.eclipse.jgit.blame Computing blame/annotate information of files.org.eclipse.jgit.diff Comparing file contents by computing diffs.org.eclipse.jgit.dircache Reading and editing the directory cache (index).org.eclipse.jgit.lfs.lib org.eclipse.jgit.lib Core API for repository, config, refs, object database.org.eclipse.jgit.merge Content and commit history merge algorithms.org.eclipse.jgit.pgm org.eclipse.jgit.pgm.debug org.eclipse.jgit.revwalk Walking revision graphs (commit history).org.eclipse.jgit.submodule Git submodule support.org.eclipse.jgit.transport Transport (fetch/push) for different protocols.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.api
Methods in org.eclipse.jgit.api with parameters of type TreeWalk Modifier and Type Method Description private voidCheckoutCommand. checkoutPathsFromCommit(TreeWalk treeWalk, DirCache dc, RevCommit commit, Checkout checkout)private voidCheckoutCommand. checkoutPathsFromIndex(TreeWalk treeWalk, DirCache dc, Checkout checkout) -
Uses of TreeWalk in org.eclipse.jgit.attributes
Fields in org.eclipse.jgit.attributes declared as TreeWalk Modifier and Type Field Description private TreeWalkAttributesHandler. treeWalkMethods in org.eclipse.jgit.attributes with parameters of type TreeWalk Modifier and Type Method Description private static AttributesNodeAttributesHandler. attributesNode(TreeWalk treeWalk, WorkingTreeIterator workingTreeIterator, DirCacheIterator dirCacheIterator, CanonicalTreeParser otherTree)Get theAttributesNodefor the current entry.Constructors in org.eclipse.jgit.attributes with parameters of type TreeWalk Constructor Description AttributesHandler(TreeWalk treeWalk)Create anAttributesHandlerwith default rules as well as merged rules from global, info and worktree root attributes -
Uses of TreeWalk in org.eclipse.jgit.blame
Fields in org.eclipse.jgit.blame declared as TreeWalk Modifier and Type Field Description private TreeWalkBlameGenerator. treeWalk -
Uses of TreeWalk in org.eclipse.jgit.diff
Fields in org.eclipse.jgit.diff declared as TreeWalk Modifier and Type Field Description private TreeWalkContentSource.WorkingTreeSource. twMethods in org.eclipse.jgit.diff with parameters of type TreeWalk Modifier and Type Method Description static java.util.List<DiffEntry>DiffEntry. scan(TreeWalk walk)Convert the TreeWalk into DiffEntry headers.static java.util.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 java.util.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.dircache
Methods in org.eclipse.jgit.dircache with parameters of type TreeWalk Modifier and Type Method Description private voidDirCacheCheckout. addTree(TreeWalk tw, ObjectId id) -
Uses of TreeWalk in org.eclipse.jgit.lfs.lib
Methods in org.eclipse.jgit.lfs.lib with parameters of type TreeWalk Modifier and Type Method Description booleanLfsPointerFilter. include(TreeWalk walk)Determine if the current entry is interesting to report. -
Uses of TreeWalk in org.eclipse.jgit.lib
Methods in org.eclipse.jgit.lib with parameters of type TreeWalk Modifier and Type Method Description booleanIndexDiff.ProgressReportingFilter. include(TreeWalk walker) -
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.pgm
Methods in org.eclipse.jgit.pgm with parameters of type TreeWalk Modifier and Type Method Description private booleanLsFiles. filterFileMode(TreeWalk tw, FileMode... modes) -
Uses of TreeWalk in org.eclipse.jgit.pgm.debug
Methods in org.eclipse.jgit.pgm.debug with parameters of type TreeWalk Modifier and Type Method Description private static booleanDiffAlgorithms. isFile(TreeWalk tw, int ithTree) -
Uses of TreeWalk in org.eclipse.jgit.revwalk
Fields in org.eclipse.jgit.revwalk declared as TreeWalk Modifier and Type Field Description private TreeWalkTreeRevFilter. pathFilterMethods in org.eclipse.jgit.revwalk with parameters of type TreeWalk Modifier and Type Method Description booleanFollowFilter. include(TreeWalk walker)Determine if the current entry is interesting to report. -
Uses of TreeWalk in org.eclipse.jgit.submodule
Fields in org.eclipse.jgit.submodule declared as TreeWalk Modifier and Type Field Description private TreeWalkSubmoduleWalk. walk -
Uses of TreeWalk in org.eclipse.jgit.transport
Fields in org.eclipse.jgit.transport declared as TreeWalk Modifier and Type Field Description private TreeWalkWalkFetchConnection. treeWalkMethods in org.eclipse.jgit.transport that return TreeWalk Modifier and Type Method Description private TreeWalkPushCertificateStore. newTreeWalk(java.lang.String refName)Methods in org.eclipse.jgit.transport with parameters of type TreeWalk Modifier and Type Method Description (package private) static PushCertificatePushCertificateStore. read(TreeWalk tw) -
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.Fields in org.eclipse.jgit.treewalk declared as TreeWalk Modifier and Type Field Description (package private) TreeWalkWorkingTreeIterator.IteratorState. walkTreeWalk with a (supposedly) matching DirCacheIterator.Methods in org.eclipse.jgit.treewalk that return TreeWalk Modifier and Type Method Description static TreeWalkTreeWalk. forPath(ObjectReader reader, java.lang.String path, AnyObjectId... trees)Open a tree walk and filter to exactly one path.static TreeWalkTreeWalk. forPath(Repository db, java.lang.String path, AnyObjectId... trees)Open a tree walk and filter to exactly one path.static TreeWalkTreeWalk. forPath(Repository db, java.lang.String path, RevTree tree)Open a tree walk and filter to exactly one path.static TreeWalkTreeWalk. forPath(Repository repo, ObjectReader reader, java.lang.String path, AnyObjectId... trees)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.booleanAndTreeFilter.Binary. include(TreeWalk walker)booleanAndTreeFilter.List. include(TreeWalk walker)booleanIndexDiffFilter. include(TreeWalk tw)Determine if the current entry is interesting to report.booleanInterIndexDiffFilter. include(TreeWalk walker)Determine if the current entry is interesting to report.booleanNotIgnoredFilter. include(TreeWalk tw)Determine if the current entry is interesting to report.booleanNotTreeFilter. include(TreeWalk walker)Determine if the current entry is interesting to report.booleanOrTreeFilter.Binary. include(TreeWalk walker)booleanOrTreeFilter.List. include(TreeWalk walker)booleanPathFilter. include(TreeWalk walker)Determine if the current entry is interesting to report.booleanPathFilterGroup.Group. include(TreeWalk walker)booleanPathFilterGroup.Single. include(TreeWalk walker)booleanPathSuffixFilter. include(TreeWalk walker)Determine if the current entry is interesting to report.booleanSkipWorkTreeFilter. include(TreeWalk walker)Determine if the current entry is interesting to report.booleanTreeFilter.AllFilter. include(TreeWalk walker)booleanTreeFilter.AnyDiffFilter. include(TreeWalk walker)abstract booleanTreeFilter. include(TreeWalk walker)Determine if the current entry is interesting to report.booleanPathFilter. isDone(TreeWalk walker)Whether the path length of this filter matches the length of the current path of the supplied TreeWalk.intAndTreeFilter.Binary. matchFilter(TreeWalk walker)intAndTreeFilter.List. matchFilter(TreeWalk walker)intNotTreeFilter. matchFilter(TreeWalk walker)Determine if the current entry is a parent, a match, or no match.intOrTreeFilter.Binary. matchFilter(TreeWalk walker)intOrTreeFilter.List. matchFilter(TreeWalk walker)intPathFilter. matchFilter(TreeWalk walker)Determine if the current entry is a parent, a match, or no match.intTreeFilter. matchFilter(TreeWalk walker)Determine if the current entry is a parent, a match, or no match.private WorkingTreeIteratorIndexDiffFilter. workingTree(TreeWalk tw)
-