Uses of Class
org.eclipse.jgit.treewalk.AbstractTreeIterator
-
Packages that use AbstractTreeIterator 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.dircache Reading and editing the directory cache (index).org.eclipse.jgit.merge Content and commit history merge algorithms.org.eclipse.jgit.submodule Git submodule support.org.eclipse.jgit.treewalk Walking and comparing directory/file trees (of commits, file system). -
-
Uses of AbstractTreeIterator in org.eclipse.jgit.api
Methods in org.eclipse.jgit.api with parameters of type AbstractTreeIterator Modifier and Type Method Description DiffCommandDiffCommand. setNewTree(AbstractTreeIterator newTree)Set new treeDiffCommandDiffCommand. setOldTree(AbstractTreeIterator oldTree)Set old tree -
Uses of AbstractTreeIterator in org.eclipse.jgit.diff
Methods in org.eclipse.jgit.diff with parameters of type AbstractTreeIterator Modifier and Type Method Description voidDiffFormatter. format(AbstractTreeIterator a, AbstractTreeIterator b)Format the differences between two trees.List<DiffEntry>DiffFormatter. scan(AbstractTreeIterator a, AbstractTreeIterator b)Determine the differences between two trees. -
Uses of AbstractTreeIterator in org.eclipse.jgit.dircache
Subclasses of AbstractTreeIterator in org.eclipse.jgit.dircache Modifier and Type Class Description classDirCacheBuildIteratorIterate and update aDirCacheas part of aTreeWalk.classDirCacheIteratorIterate aDirCacheas part of aTreeWalk.Methods in org.eclipse.jgit.dircache that return AbstractTreeIterator Modifier and Type Method Description AbstractTreeIteratorDirCacheBuildIterator. createSubtreeIterator(ObjectReader reader)Create a new iterator for the current entry's subtree.AbstractTreeIteratorDirCacheIterator. createSubtreeIterator(ObjectReader reader)Create a new iterator for the current entry's subtree. -
Uses of AbstractTreeIterator in org.eclipse.jgit.merge
Methods in org.eclipse.jgit.merge that return AbstractTreeIterator Modifier and Type Method Description protected AbstractTreeIteratorThreeWayMerger. mergeBase()Create an iterator to walk the merge base.protected AbstractTreeIteratorMerger. openTree(AnyObjectId treeId)Open an iterator over a tree.Methods in org.eclipse.jgit.merge with parameters of type AbstractTreeIterator Modifier and Type Method Description protected booleanResolveMerger. mergeTrees(AbstractTreeIterator baseTree, RevTree headTree, RevTree mergeTree, boolean ignoreConflicts)The resolve conflict way of three way merging -
Uses of AbstractTreeIterator in org.eclipse.jgit.submodule
Methods in org.eclipse.jgit.submodule with parameters of type AbstractTreeIterator Modifier and Type Method Description static SubmoduleWalkSubmoduleWalk. forPath(Repository repository, AbstractTreeIterator iterator, String path)Create a generator and advance it to the submodule entry at the given pathSubmoduleWalkSubmoduleWalk. setRootTree(AbstractTreeIterator tree)Set the tree used by this walk for finding.gitmodules.SubmoduleWalkSubmoduleWalk. setTree(AbstractTreeIterator iterator)Set the tree iterator used for finding submodule entries -
Uses of AbstractTreeIterator in org.eclipse.jgit.treewalk
Subclasses of AbstractTreeIterator in org.eclipse.jgit.treewalk Modifier and Type Class Description classCanonicalTreeParserParses raw Git trees from the canonical semi-text/semi-binary format.classEmptyTreeIteratorIterator over an empty tree (a directory with no files).classFileTreeIteratorWorking directory iterator for standard Java IO.classWorkingTreeIteratorWalks a working directory tree as part of aTreeWalk.Fields in org.eclipse.jgit.treewalk declared as AbstractTreeIterator Modifier and Type Field Description AbstractTreeIteratorAbstractTreeIterator. parentIterator for the parent tree; null if we are the root iterator.Methods in org.eclipse.jgit.treewalk with type parameters of type AbstractTreeIterator Modifier and Type Method Description <T extends AbstractTreeIterator>
TTreeWalk. getTree(int nth, Class<T> clazz)Obtain the tree iterator for the current entry.<T extends AbstractTreeIterator>
TTreeWalk. getTree(Class<T> type)Get the tree of that type.Methods in org.eclipse.jgit.treewalk that return AbstractTreeIterator Modifier and Type Method Description abstract AbstractTreeIteratorAbstractTreeIterator. createSubtreeIterator(ObjectReader reader)Create a new iterator for the current entry's subtree.AbstractTreeIteratorAbstractTreeIterator. createSubtreeIterator(ObjectReader reader, MutableObjectId idBuffer)Create a new iterator for the current entry's subtree.AbstractTreeIteratorEmptyTreeIterator. createSubtreeIterator(ObjectReader reader)Create a new iterator for the current entry's subtree.AbstractTreeIteratorFileTreeIterator. createSubtreeIterator(ObjectReader reader)Create a new iterator for the current entry's subtree.protected AbstractTreeIteratorFileTreeIterator. enterSubtree()Create a new iterator for the current entry's subtree.Methods in org.eclipse.jgit.treewalk with parameters of type AbstractTreeIterator Modifier and Type Method Description intTreeWalk. addTree(AbstractTreeIterator p)Add an already created tree iterator for walking.booleanAbstractTreeIterator. idEqual(AbstractTreeIterator otherIterator)Check if the current entry of both iterators has the same id.intAbstractTreeIterator. pathCompare(AbstractTreeIterator p)Compare the path of this current entry to another iterator's entry.Constructors in org.eclipse.jgit.treewalk with parameters of type AbstractTreeIterator Constructor Description AbstractTreeIterator(AbstractTreeIterator p)Create an iterator for a subtree of an existing iterator.AbstractTreeIterator(AbstractTreeIterator p, byte[] childPath, int childPathOffset)Create an iterator for a subtree of an existing iterator.EmptyTreeIterator(AbstractTreeIterator p, byte[] childPath, int childPathOffset)Create an iterator for a subtree of an existing iterator.
-