Uses of Class
org.eclipse.jgit.errors.IncorrectObjectTypeException
-
Packages that use IncorrectObjectTypeException Package Description org.eclipse.jgit.api High-level API commands (the porcelain of JGit).org.eclipse.jgit.dircache Reading and editing the directory cache (index).org.eclipse.jgit.internal.revwalk org.eclipse.jgit.internal.storage.dfs Distributed file system based repository storage.org.eclipse.jgit.internal.storage.pack Reading/writing Git pack files.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.notes Git notes processing (for commits, etc).org.eclipse.jgit.revplot Building/rendering revision graphs.org.eclipse.jgit.revwalk Walking revision graphs (commit history).org.eclipse.jgit.revwalk.filter Filters for use in revision walking.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 IncorrectObjectTypeException in org.eclipse.jgit.api
Methods in org.eclipse.jgit.api that throw IncorrectObjectTypeException Modifier and Type Method Description LogCommandLogCommand. add(AnyObjectId start)Mark a commit to start graph traversal from.LogCommandLogCommand. addRange(AnyObjectId since, AnyObjectId until)Adds the rangesince..untilLogCommandLogCommand. not(AnyObjectId start)Same as--not start, or^start -
Uses of IncorrectObjectTypeException in org.eclipse.jgit.dircache
Methods in org.eclipse.jgit.dircache that throw IncorrectObjectTypeException 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.voidDirCacheCheckout. prescanOneTree()Scan index and merge tree (no HEAD). -
Uses of IncorrectObjectTypeException in org.eclipse.jgit.internal.revwalk
Methods in org.eclipse.jgit.internal.revwalk that throw IncorrectObjectTypeException Modifier and Type Method Description Optional<RevCommit>BitmappedReachabilityChecker. areAllReachable(Collection<RevCommit> targets, Stream<RevCommit> starters)Check all targets are reachable from the starters.Optional<RevCommit>PedestrianReachabilityChecker. areAllReachable(Collection<RevCommit> targets, Stream<RevCommit> starters) -
Uses of IncorrectObjectTypeException in org.eclipse.jgit.internal.storage.dfs
Methods in org.eclipse.jgit.internal.storage.dfs that throw IncorrectObjectTypeException Modifier and Type Method Description longDfsReader. getObjectSize(AnyObjectId objectId, int typeHint)Get only the size of an object.ObjectLoaderDfsReader. open(AnyObjectId objectId, int typeHint)Open an object from this database. -
Uses of IncorrectObjectTypeException in org.eclipse.jgit.internal.storage.pack
Methods in org.eclipse.jgit.internal.storage.pack that throw IncorrectObjectTypeException Modifier and Type Method Description voidPackWriter. addObject(RevObject object)Include one object to the output file. -
Uses of IncorrectObjectTypeException in org.eclipse.jgit.lib
Methods in org.eclipse.jgit.lib that throw IncorrectObjectTypeException Modifier and Type Method Description longObjectReader.Filter. getObjectSize(AnyObjectId objectId, int typeHint)longObjectReader. getObjectSize(AnyObjectId objectId, int typeHint)Get only the size of an object.booleanObjectReader. isNotLargerThan(AnyObjectId objectId, int typeHint, long size)Check if the object size is less or equal than certain value By default, it reads the object from storage to get the size.ObjectLoaderObjectDatabase. open(AnyObjectId objectId, int typeHint)Open an object from this database.ObjectLoaderObjectReader.Filter. open(AnyObjectId objectId, int typeHint)abstract ObjectLoaderObjectReader. open(AnyObjectId objectId, int typeHint)Open an object from this database.ObjectLoaderRepository. open(AnyObjectId objectId, int typeHint)Open an object from this repository.RevCommitRepository. parseCommit(AnyObjectId id)Locate a reference to a commit and immediately parse its content.ObjectIdRepository. resolve(String revstr)Parse a git revision string and return an object id. -
Uses of IncorrectObjectTypeException in org.eclipse.jgit.merge
Methods in org.eclipse.jgit.merge that throw IncorrectObjectTypeException Modifier and Type Method Description protected RevCommitMerger. getBaseCommit(RevCommit a, RevCommit b)Return the merge base of two commits.protected RevCommitRecursiveMerger. getBaseCommit(RevCommit a, RevCommit b)Return the merge base of two commits.protected AbstractTreeIteratorMerger. openTree(AnyObjectId treeId)Open an iterator over a tree.voidThreeWayMerger. setBase(AnyObjectId id)Set the common ancestor tree. -
Uses of IncorrectObjectTypeException in org.eclipse.jgit.notes
Methods in org.eclipse.jgit.notes that throw IncorrectObjectTypeException Modifier and Type Method Description static NoteMapNoteMap. read(ObjectReader reader, RevCommit commit)Load a collection of notes from a branch.static NoteMapNoteMap. read(ObjectReader reader, RevTree tree)Load a collection of notes from a tree.static NoteMapNoteMap. readTree(ObjectReader reader, ObjectId treeId)Load a collection of notes from a tree. -
Uses of IncorrectObjectTypeException in org.eclipse.jgit.revplot
Methods in org.eclipse.jgit.revplot that throw IncorrectObjectTypeException Modifier and Type Method Description RevCommitPlotWalk. next()Pop the next most recent commit. -
Uses of IncorrectObjectTypeException in org.eclipse.jgit.revwalk
Methods in org.eclipse.jgit.revwalk that throw IncorrectObjectTypeException Modifier and Type Method Description voidRevCommitList. applyFlag(RevFilter matching, RevFlag flag)Apply a flag to all commits matching the specified filter.voidRevCommitList. applyFlag(RevFilter matching, RevFlag flag, int rangeBegin, int rangeEnd)Apply a flag to all commits matching the specified filter.default Optional<RevCommit>ReachabilityChecker. areAllReachable(Collection<RevCommit> targets, Collection<RevCommit> starters)Deprecated.Optional<RevCommit>ReachabilityChecker. areAllReachable(Collection<RevCommit> targets, Stream<RevCommit> starters)Check if all targets are reachable from thestartercommits.voidObjectWalk. checkConnectivity()Verify all interesting objects are available, and reachable.static intRevWalkUtils. count(RevWalk walk, RevCommit start, RevCommit end)Count the number of commits that are reachable fromstartuntil a commit that is reachable fromendis encountered.voidRevCommitList. fillTo(int highMark)Ensure this list contains at least a specified number of commits.voidRevCommitList. fillTo(RevCommit commitToLoad, int highMark)Ensures all commits until the given commit are loaded.static List<RevCommit>RevWalkUtils. find(RevWalk walk, RevCommit start, RevCommit end)Find commits that are reachable fromstartuntil a commit that is reachable fromendis encountered.static List<Ref>RevWalkUtils. findBranchesReachableFrom(RevCommit commit, RevWalk revWalk, Collection<Ref> refs)Find the list of branches a given commit is reachable from when following parents.static List<Ref>RevWalkUtils. findBranchesReachableFrom(RevCommit commit, RevWalk revWalk, Collection<Ref> refs, ProgressMonitor monitor)Find the list of branches a given commit is reachable from when following parents.BitmapIndex.BitmapBuilderBitmapWalker. findObjects(Iterable<? extends ObjectId> start, BitmapIndex.BitmapBuilder seen, boolean ignoreMissing)Return, as a bitmap, the objects reachable from the objects in start.booleanFollowFilter. include(TreeWalk walker)Determine if the current entry is interesting to report.booleanTreeRevFilter. include(RevWalk walker, RevCommit c)Determine if the supplied commit should be included in results.booleanRevWalk. isMergedInto(RevCommit base, RevCommit tip)Determine if a commit is reachable from another commit.voidDepthWalk.ObjectWalk. markRoot(RevObject o)Mark a root commit (i.e., one whose depth should be considered 0.)voidDepthWalk.RevWalk. markRoot(RevCommit c)Mark a root commit (i.e., one whose depth should be considered 0.)voidObjectWalk. markStart(RevObject o)Mark an object or commit to start graph traversal from.voidRevWalk. markStart(Collection<RevCommit> list)Mark commits to start graph traversal from.voidRevWalk. markStart(RevCommit c)Mark a commit to start graph traversal from.voidObjectWalk. markUninteresting(RevObject o)Mark an object to not produce in the output.voidRevWalk. markUninteresting(RevCommit c)Mark a commit to not produce in the output.voidDepthWalk.ObjectWalk. markUnshallow(RevObject c)Mark an element which used to be shallow in the client, but which should now be considered a full commit.RevCommitObjectWalk. next()Pop the next most recent commit.RevCommitRevWalk. next()Pop the next most recent commit.RevObjectObjectWalk. nextObject()Pop the next most recent object.RevCommitRevWalk. parseCommit(AnyObjectId id)Locate a reference to a commit and immediately parse its content.RevTagRevWalk. parseTag(AnyObjectId id)Locate a reference to an annotated tag and immediately parse its content.RevTreeRevWalk. parseTree(AnyObjectId id)Locate a reference to a tree. -
Uses of IncorrectObjectTypeException in org.eclipse.jgit.revwalk.filter
Methods in org.eclipse.jgit.revwalk.filter that throw IncorrectObjectTypeException Modifier and Type Method Description booleanMaxCountRevFilter. include(RevWalk walker, RevCommit cmit)Determine if the supplied commit should be included in results.booleanNotRevFilter. include(RevWalk walker, RevCommit c)Determine if the supplied commit should be included in results.abstract booleanObjectFilter. include(ObjectWalk walker, AnyObjectId objid)Determine if the named object should be included in the walk.booleanPatternMatchRevFilter. include(RevWalk walker, RevCommit cmit)Determine if the supplied commit should be included in results.abstract booleanRevFilter. include(RevWalk walker, RevCommit cmit)Determine if the supplied commit should be included in results.booleanSkipRevFilter. include(RevWalk walker, RevCommit cmit)Determine if the supplied commit should be included in results.booleanSubStringRevFilter. include(RevWalk walker, RevCommit cmit)Determine if the supplied commit should be included in results. -
Uses of IncorrectObjectTypeException in org.eclipse.jgit.treewalk
Methods in org.eclipse.jgit.treewalk that throw IncorrectObjectTypeException Modifier and Type Method Description intTreeWalk. addTree(AnyObjectId id)Add an already existing tree object for walking.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.CanonicalTreeParserCanonicalTreeParser. createSubtreeIterator(ObjectReader reader)Create a new iterator for the current entry's subtree.CanonicalTreeParserCanonicalTreeParser. 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.voidTreeWalk. enterSubtree()Enter into the current subtree.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.static TreeWalkTreeWalk. forPath(Repository repo, ObjectReader reader, String path, AnyObjectId... trees)Open a tree walk and filter to exactly one path.booleanTreeWalk. next()Advance this walker to the next relevant entry.voidCanonicalTreeParser. reset(ObjectReader reader, AnyObjectId id)Reset this parser to walk through the given tree.voidTreeWalk. reset(AnyObjectId id)Reset this walker to run over a single existing tree.voidTreeWalk. reset(AnyObjectId... ids)Reset this walker to run over a set of existing trees.CanonicalTreeParserCanonicalTreeParser. resetRoot(ObjectReader reader, AnyObjectId id)Reset this parser to walk through the given tree.Constructors in org.eclipse.jgit.treewalk that throw IncorrectObjectTypeException Constructor Description CanonicalTreeParser(byte[] prefix, ObjectReader reader, AnyObjectId treeId)Create a new parser for a tree appearing in a subset of a repository. -
Uses of IncorrectObjectTypeException in org.eclipse.jgit.treewalk.filter
Methods in org.eclipse.jgit.treewalk.filter that throw IncorrectObjectTypeException Modifier and Type Method Description intTreeFilterMarker. getMarks(TreeWalk walk)Test the filters against the walk.booleanIndexDiffFilter. include(TreeWalk tw)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.booleanPathSuffixFilter. include(TreeWalk walker)Determine if the current entry is interesting to report.abstract booleanTreeFilter. include(TreeWalk walker)Determine if the current entry is interesting to report.intNotTreeFilter. matchFilter(TreeWalk walker)Determine if the current entry is a parent, a match, or no match.intPathSuffixFilter. matchFilter(TreeWalk walker)intTreeFilter. matchFilter(TreeWalk walker)Determine if the current entry is a parent, a match, or no match.
-