Uses of Class
org.eclipse.jgit.lib.AbbreviatedObjectId
-
Packages that use AbbreviatedObjectId Package Description org.eclipse.jgit.diff Comparing file contents by computing diffs.org.eclipse.jgit.errors Exceptions thrown by lower-level JGit APIs.org.eclipse.jgit.internal.storage.dfs Distributed file system based repository storage.org.eclipse.jgit.internal.storage.file File based repository storage.org.eclipse.jgit.lib Core API for repository, config, refs, object database.org.eclipse.jgit.notes Git notes processing (for commits, etc).org.eclipse.jgit.patch Patch file parser and data structure. -
-
Uses of AbbreviatedObjectId in org.eclipse.jgit.diff
Fields in org.eclipse.jgit.diff declared as AbbreviatedObjectId Modifier and Type Field Description (package private) static AbbreviatedObjectIdDiffEntry. A_ZEROMagical SHA1 used for file adds or deletesprotected AbbreviatedObjectIdDiffEntry. newIdObjectId listed on the index line for the new (post-image)protected AbbreviatedObjectIdDiffEntry. oldIdObjectId listed on the index line for the old (pre-image)Methods in org.eclipse.jgit.diff that return AbbreviatedObjectId Modifier and Type Method Description AbbreviatedObjectIdDiffEntry. getId(DiffEntry.Side side)Get the object id.AbbreviatedObjectIdDiffEntry. getNewId()Get the new object id from theindex.AbbreviatedObjectIdDiffEntry. getOldId()Get the old object id from theindex.private static AbbreviatedObjectIdRenameDetector. id(DiffEntry de)Methods in org.eclipse.jgit.diff that return types with arguments of type AbbreviatedObjectId Modifier and Type Method Description private java.util.HashMap<AbbreviatedObjectId,java.lang.Object>RenameDetector. populateMap(java.util.List<DiffEntry> diffEntries, ProgressMonitor pm)Methods in org.eclipse.jgit.diff with parameters of type AbbreviatedObjectId Modifier and Type Method Description private java.lang.StringDiffFormatter. format(AbbreviatedObjectId id)private static byte[]DiffFormatter. writeGitLinkText(AbbreviatedObjectId id) -
Uses of AbbreviatedObjectId in org.eclipse.jgit.errors
Fields in org.eclipse.jgit.errors declared as AbbreviatedObjectId Modifier and Type Field Description private AbbreviatedObjectIdAmbiguousObjectException. missingMethods in org.eclipse.jgit.errors that return AbbreviatedObjectId Modifier and Type Method Description AbbreviatedObjectIdAmbiguousObjectException. getAbbreviatedObjectId()Get theAbbreviatedObjectIdthat has more than one resultConstructors in org.eclipse.jgit.errors with parameters of type AbbreviatedObjectId Constructor Description AmbiguousObjectException(AbbreviatedObjectId id, java.util.Collection<ObjectId> candidates)Construct a MissingObjectException for the specified object id.MissingObjectException(AbbreviatedObjectId id, int type)Construct a MissingObjectException for the specified object id. -
Uses of AbbreviatedObjectId in org.eclipse.jgit.internal.storage.dfs
Methods in org.eclipse.jgit.internal.storage.dfs with parameters of type AbbreviatedObjectId Modifier and Type Method Description java.util.Collection<ObjectId>DfsInserter.Reader. resolve(AbbreviatedObjectId id)(package private) voidDfsPackFile. resolve(DfsReader ctx, java.util.Set<ObjectId> matches, AbbreviatedObjectId id, int matchLimit)java.util.Collection<ObjectId>DfsReader. resolve(AbbreviatedObjectId id)Resolve an abbreviated ObjectId to its full form.private voidDfsReader. resolveImpl(DfsObjDatabase.PackList packList, AbbreviatedObjectId id, java.util.HashSet<ObjectId> matches) -
Uses of AbbreviatedObjectId in org.eclipse.jgit.internal.storage.file
Methods in org.eclipse.jgit.internal.storage.file with parameters of type AbbreviatedObjectId Modifier and Type Method Description (package private) voidCachedObjectDirectory. resolve(java.util.Set<ObjectId> matches, AbbreviatedObjectId id)(package private) abstract voidFileObjectDatabase. resolve(java.util.Set<ObjectId> matches, AbbreviatedObjectId id)(package private) booleanLooseObjects. resolve(java.util.Set<ObjectId> matches, AbbreviatedObjectId id, int matchLimit)Find objects matching the prefix abbreviation.(package private) voidObjectDirectory. resolve(java.util.Set<ObjectId> matches, AbbreviatedObjectId id)private voidObjectDirectory. resolve(java.util.Set<ObjectId> matches, AbbreviatedObjectId id, java.util.Set<ObjectDirectory.AlternateHandle.Id> skips)(package private) voidPack. resolve(java.util.Set<ObjectId> matches, AbbreviatedObjectId id, int matchLimit)(package private) booleanPackDirectory. resolve(java.util.Set<ObjectId> matches, AbbreviatedObjectId id, int matchLimit)Find objects matching the prefix abbreviation.abstract voidPackIndex. resolve(java.util.Set<ObjectId> matches, AbbreviatedObjectId id, int matchLimit)Find objects matching the prefix abbreviation.voidPackIndexV1. resolve(java.util.Set<ObjectId> matches, AbbreviatedObjectId id, int matchLimit)Find objects matching the prefix abbreviation.voidPackIndexV2. resolve(java.util.Set<ObjectId> matches, AbbreviatedObjectId id, int matchLimit)Find objects matching the prefix abbreviation.java.util.Collection<ObjectId>PackInserter.Reader. resolve(AbbreviatedObjectId id)java.util.Collection<ObjectId>WindowCursor. resolve(AbbreviatedObjectId id)Resolve an abbreviated ObjectId to its full form. -
Uses of AbbreviatedObjectId in org.eclipse.jgit.lib
Fields in org.eclipse.jgit.lib declared as AbbreviatedObjectId Modifier and Type Field Description (package private) AbbreviatedObjectIdRebaseTodoLine. commitMethods in org.eclipse.jgit.lib that return AbbreviatedObjectId Modifier and Type Method Description AbbreviatedObjectIdAnyObjectId. abbreviate(int len)Return an abbreviation (prefix) of this object SHA-1.AbbreviatedObjectIdObjectReader. abbreviate(AnyObjectId objectId)Obtain a unique abbreviation (prefix) of an object SHA-1.AbbreviatedObjectIdObjectReader. abbreviate(AnyObjectId objectId, int len)Obtain a unique abbreviation (prefix) of an object SHA-1.AbbreviatedObjectIdObjectReader.Filter. abbreviate(AnyObjectId objectId)AbbreviatedObjectIdObjectReader.Filter. abbreviate(AnyObjectId objectId, int len)private static AbbreviatedObjectIdAbbreviatedObjectId. fromHexString(byte[] bs, int ptr, int end)static AbbreviatedObjectIdAbbreviatedObjectId. fromObjectId(AnyObjectId id)Convert an AbbreviatedObjectId from anAnyObjectId.static AbbreviatedObjectIdAbbreviatedObjectId. fromString(byte[] buf, int offset, int end)Convert an AbbreviatedObjectId from hex characters (US-ASCII).static AbbreviatedObjectIdAbbreviatedObjectId. fromString(java.lang.String str)Convert an AbbreviatedObjectId from hex characters.AbbreviatedObjectIdRebaseTodoLine. getCommit()Get abbreviated commit SHA-1 of commit that action will be performed onMethods in org.eclipse.jgit.lib with parameters of type AbbreviatedObjectId Modifier and Type Method Description java.util.Collection<ObjectId>ObjectReader.Filter. resolve(AbbreviatedObjectId id)abstract java.util.Collection<ObjectId>ObjectReader. resolve(AbbreviatedObjectId id)Resolve an abbreviated ObjectId to its full form.booleanAnyObjectId. startsWith(AbbreviatedObjectId abbr)Tests if this ObjectId starts with the given abbreviation.Constructors in org.eclipse.jgit.lib with parameters of type AbbreviatedObjectId Constructor Description RebaseTodoLine(RebaseTodoLine.Action action, AbbreviatedObjectId commit, java.lang.String shortMessage)Create a new non-comment line -
Uses of AbbreviatedObjectId in org.eclipse.jgit.notes
Methods in org.eclipse.jgit.notes with parameters of type AbbreviatedObjectId Modifier and Type Method Description (package private) static InMemoryNoteBucketNoteParser. parse(AbbreviatedObjectId prefix, ObjectId treeId, ObjectReader reader)Parse a tree object into aNoteBucketinstance.Constructors in org.eclipse.jgit.notes with parameters of type AbbreviatedObjectId Constructor Description NoteParser(AbbreviatedObjectId prefix, ObjectReader r, ObjectId t) -
Uses of AbbreviatedObjectId in org.eclipse.jgit.patch
Fields in org.eclipse.jgit.patch declared as AbbreviatedObjectId Modifier and Type Field Description private AbbreviatedObjectId[]CombinedFileHeader. oldIdsMethods in org.eclipse.jgit.patch that return AbbreviatedObjectId Modifier and Type Method Description abstract AbbreviatedObjectIdHunkHeader.OldImage. getId()AbbreviatedObjectIdCombinedFileHeader. getOldId()Get the old object id from theindex.AbbreviatedObjectIdCombinedFileHeader. getOldId(int nthParent)Get the ObjectId of the nth ancestor
-