Uses of Class
org.eclipse.jgit.dircache.DirCacheEntry
-
Packages that use DirCacheEntry Package Description org.eclipse.jgit.dircache Reading and editing the directory cache (index).org.eclipse.jgit.errors Exceptions thrown by lower-level JGit APIs.org.eclipse.jgit.merge Content and commit history merge algorithms.org.eclipse.jgit.treewalk Walking and comparing directory/file trees (of commits, file system). -
-
Uses of DirCacheEntry in org.eclipse.jgit.dircache
Fields in org.eclipse.jgit.dircache declared as DirCacheEntry Modifier and Type Field Description protected DirCacheEntry
DirCacheIterator. currentEntry
The current file entry fromDirCacheIterator.cache
.protected DirCacheEntry[]
BaseDirCacheEditor. entries
Entry table this builder will eventually replace intoBaseDirCacheEditor.cache
.protected DirCacheEntry[]
BaseDirCacheEditor. entries
Entry table this builder will eventually replace intoBaseDirCacheEditor.cache
.Methods in org.eclipse.jgit.dircache that return DirCacheEntry Modifier and Type Method Description DirCacheEntry
DirCacheIterator. getDirCacheEntry()
Get the DirCacheEntry for the current file.DirCacheEntry[]
DirCache. getEntriesWithin(String path)
Recursively get all entries within a subtree.DirCacheEntry
DirCache. getEntry(int i)
Get a specific entry.DirCacheEntry
DirCache. getEntry(String path)
Get a specific entry.Methods in org.eclipse.jgit.dircache with parameters of type DirCacheEntry Modifier and Type Method Description void
DirCacheBuilder. add(DirCacheEntry newEntry)
Append one entry into the resulting entry list.void
DirCacheEditor.DeletePath. apply(DirCacheEntry ent)
void
DirCacheEditor.DeleteTree. apply(DirCacheEntry ent)
abstract void
DirCacheEditor.PathEdit. apply(DirCacheEntry ent)
Apply the update to a single cache entry matching the path.static void
DirCacheCheckout. checkoutEntry(Repository repository, File f, DirCacheEntry entry)
Deprecated.Use the overloaded form that acceptsObjectReader
.static void
DirCacheCheckout. checkoutEntry(Repository repo, File f, DirCacheEntry entry, ObjectReader or)
Deprecated.Do not pass File object.static void
DirCacheCheckout. checkoutEntry(Repository repo, DirCacheEntry entry, ObjectReader or)
Updates the file in the working tree with content and mode from an entry in the index.void
DirCacheEntry. copyMetaData(DirCacheEntry src)
Copy the ObjectId and other meta fields from an existing entry.Constructors in org.eclipse.jgit.dircache with parameters of type DirCacheEntry Constructor Description DeletePath(DirCacheEntry ent)
Create a new deletion command for an existing entry instance.PathEdit(DirCacheEntry ent)
Create a new update command for an existing entry instance. -
Uses of DirCacheEntry in org.eclipse.jgit.errors
Methods in org.eclipse.jgit.errors that return DirCacheEntry Modifier and Type Method Description DirCacheEntry
UnmergedPathException. getDirCacheEntry()
Constructors in org.eclipse.jgit.errors with parameters of type DirCacheEntry Constructor Description UnmergedPathException(DirCacheEntry dce)
Create a new unmerged path exception. -
Uses of DirCacheEntry in org.eclipse.jgit.merge
Fields in org.eclipse.jgit.merge with type parameters of type DirCacheEntry Modifier and Type Field Description protected Map<String,DirCacheEntry>
ResolveMerger. toBeCheckedOut
If the merger has nothing to do for a file but check it out at the end of the operation, it can be added here.Methods in org.eclipse.jgit.merge that return types with arguments of type DirCacheEntry Modifier and Type Method Description Map<String,DirCacheEntry>
ResolveMerger. getToBeCheckedOut()
-
Uses of DirCacheEntry in org.eclipse.jgit.treewalk
Methods in org.eclipse.jgit.treewalk with parameters of type DirCacheEntry Modifier and Type Method Description WorkingTreeIterator.MetadataDiff
WorkingTreeIterator. compareMetadata(DirCacheEntry entry)
Compare the metadata (mode, length, modification-timestamp) of the current entry and aDirCacheEntry
boolean
WorkingTreeIterator. isModified(DirCacheEntry entry, boolean forceContentCheck)
boolean
WorkingTreeIterator. isModified(DirCacheEntry entry, boolean forceContentCheck, ObjectReader reader)
Checks whether this entry differs from a given entry from theDirCache
.
-