Uses of Class
org.eclipse.jgit.lib.ObjectInserter
-
Packages that use ObjectInserter 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.ketch Distributed consensus system built on Git.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.internal.storage.reftree org.eclipse.jgit.junit 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.transport Transport (fetch/push) for different protocols. -
-
Uses of ObjectInserter in org.eclipse.jgit.api
Methods in org.eclipse.jgit.api with parameters of type ObjectInserter Modifier and Type Method Description (package private) static void
AddNoteCommand. commitNoteMap(Repository r, java.lang.String ref, RevWalk walk, NoteMap map, RevCommit notesCommit, ObjectInserter inserter, java.lang.String msg)
-
Uses of ObjectInserter in org.eclipse.jgit.dircache
Methods in org.eclipse.jgit.dircache with parameters of type ObjectInserter Modifier and Type Method Description private int
DirCacheTree. computeSize(DirCacheEntry[] cache, int cIdx, int pathOffset, ObjectInserter ow)
ObjectId
DirCache. writeTree(ObjectInserter ow)
Write all index trees to the object store, returning the root tree.(package private) ObjectId
DirCacheTree. writeTree(DirCacheEntry[] cache, int cIdx, int pathOffset, ObjectInserter ow)
Write (if necessary) this tree to the object store. -
Uses of ObjectInserter in org.eclipse.jgit.internal.ketch
Methods in org.eclipse.jgit.internal.ketch with parameters of type ObjectInserter Modifier and Type Method Description private ObjectId
ElectionRound. bumpTerm(Repository git, ProposedTimestamp ts, ObjectInserter inserter)
private ObjectId
ProposalRound. insertMultiProposal(Repository git, ProposedTimestamp ts, ObjectInserter inserter)
private ObjectId
ProposalRound. insertSingleProposal(Repository git, ProposedTimestamp ts, ObjectInserter inserter)
private java.util.List<ReceiveCommand>
ProposalRound. makeStageList(Repository git, ObjectInserter inserter)
java.util.List<ReceiveCommand>
StageBuilder. makeStageList(java.util.Set<ObjectId> newObjs, Repository git, ObjectInserter inserter)
Construct a set of commands to stage objects on a replica. -
Uses of ObjectInserter in org.eclipse.jgit.internal.storage.dfs
Subclasses of ObjectInserter in org.eclipse.jgit.internal.storage.dfs Modifier and Type Class Description class
DfsInserter
Inserts objects into the DFS.Methods in org.eclipse.jgit.internal.storage.dfs that return ObjectInserter Modifier and Type Method Description ObjectInserter
DfsInserter.Reader. getCreatedFromInserter()
ObjectInserter
DfsObjDatabase. newInserter()
Create a newObjectInserter
to insert new objects. -
Uses of ObjectInserter in org.eclipse.jgit.internal.storage.file
Subclasses of ObjectInserter in org.eclipse.jgit.internal.storage.file Modifier and Type Class Description (package private) class
ObjectDirectoryInserter
Creates loose objects in aObjectDirectory
.class
PackInserter
Object inserter that inserts one pack per call toPackInserter.flush()
, and never inserts loose objects.Fields in org.eclipse.jgit.internal.storage.file declared as ObjectInserter Modifier and Type Field Description private ObjectInserter
WindowCursor. createdFromInserter
Methods in org.eclipse.jgit.internal.storage.file that return ObjectInserter Modifier and Type Method Description ObjectInserter
PackInserter.Reader. getCreatedFromInserter()
ObjectInserter
WindowCursor. getCreatedFromInserter()
Get theObjectInserter
from which this reader was created usinginserter.newReader()
-
Uses of ObjectInserter in org.eclipse.jgit.internal.storage.reftree
Methods in org.eclipse.jgit.internal.storage.reftree with parameters of type ObjectInserter Modifier and Type Method Description ObjectId
RefTree. writeTree(ObjectInserter inserter)
Write this reference tree. -
Uses of ObjectInserter in org.eclipse.jgit.junit
Fields in org.eclipse.jgit.junit declared as ObjectInserter Modifier and Type Field Description private ObjectInserter
TestRepository. inserter
-
Uses of ObjectInserter in org.eclipse.jgit.lib
Subclasses of ObjectInserter in org.eclipse.jgit.lib Modifier and Type Class Description static class
ObjectInserter.Filter
Wraps a delegate ObjectInserter.static class
ObjectInserter.Formatter
An inserter that can be used for formatting and id generation only.Methods in org.eclipse.jgit.lib that return ObjectInserter Modifier and Type Method Description protected abstract ObjectInserter
ObjectInserter.Filter. delegate()
ObjectInserter
ObjectReader.Filter. getCreatedFromInserter()
ObjectInserter
ObjectReader. getCreatedFromInserter()
Get theObjectInserter
from which this reader was created usinginserter.newReader()
abstract ObjectInserter
ObjectDatabase. newInserter()
Create a newObjectInserter
to insert new objects.ObjectInserter
Repository. newObjectInserter()
Create a new inserter to create objects inRepository.getObjectDatabase()
.Methods in org.eclipse.jgit.lib with parameters of type ObjectInserter Modifier and Type Method Description ObjectId
TreeFormatter. computeId(ObjectInserter ins)
Compute the ObjectId for this treeObjectId
TreeFormatter. insertTo(ObjectInserter ins)
Insert this tree and obtain its ObjectId. -
Uses of ObjectInserter in org.eclipse.jgit.merge
Fields in org.eclipse.jgit.merge declared as ObjectInserter Modifier and Type Field Description private ObjectInserter
Merger. inserter
Methods in org.eclipse.jgit.merge that return ObjectInserter Modifier and Type Method Description ObjectInserter
Merger. getObjectInserter()
Get an object writer to create objects, writing objects toMerger.getRepository()
Methods in org.eclipse.jgit.merge with parameters of type ObjectInserter Modifier and Type Method Description abstract Merger
MergeStrategy. newMerger(ObjectInserter inserter, Config config)
Create a new merge instance.Merger
StrategyOneSided. newMerger(ObjectInserter inserter, Config config)
Create a new merge instance.ThreeWayMerger
StrategyRecursive. newMerger(ObjectInserter inserter, Config config)
Create a new merge instance.ThreeWayMerger
StrategyResolve. newMerger(ObjectInserter inserter, Config config)
Create a new merge instance.ThreeWayMerger
StrategySimpleTwoWayInCore. newMerger(ObjectInserter inserter, Config config)
Create a new merge instance.void
Merger. setObjectInserter(ObjectInserter oi)
Set the inserter this merger will use to create objects.Constructors in org.eclipse.jgit.merge with parameters of type ObjectInserter Constructor Description InCoreMerger(ObjectInserter inserter)
Merger(ObjectInserter oi)
Create a new in-core merge instance from an inserter.OneSide(ObjectInserter inserter, int index)
RecursiveMerger(ObjectInserter inserter, Config config)
Normal recursive merge, implies inCore.ResolveMerger(ObjectInserter inserter, Config config)
Constructor for ResolveMerger.ThreeWayMerger(ObjectInserter inserter)
Create a new in-core merge instance from an inserter. -
Uses of ObjectInserter in org.eclipse.jgit.notes
Fields in org.eclipse.jgit.notes declared as ObjectInserter Modifier and Type Field Description private ObjectInserter
NoteMapMerger. inserter
Methods in org.eclipse.jgit.notes with parameters of type ObjectInserter Modifier and Type Method Description private TreeFormatter
FanoutBucket. build(boolean insert, ObjectInserter inserter)
Note
DefaultNoteMerger. merge(Note base, Note ours, Note theirs, ObjectReader reader, ObjectInserter inserter)
Merges the conflicting note changes.Note
NoteMerger. merge(Note base, Note ours, Note their, ObjectReader reader, ObjectInserter inserter)
Merges the conflicting note changes.void
NoteMap. set(AnyObjectId noteOn, java.lang.String noteData, ObjectInserter ins)
Attach a note to an object.(package private) ObjectId
FanoutBucket.LazyNoteBucket. writeTree(ObjectInserter inserter)
(package private) ObjectId
FanoutBucket. writeTree(ObjectInserter inserter)
(package private) ObjectId
LeafBucket. writeTree(ObjectInserter inserter)
(package private) abstract ObjectId
NoteBucket. writeTree(ObjectInserter inserter)
ObjectId
NoteMap. writeTree(ObjectInserter inserter)
Write this note map as a tree. -
Uses of ObjectInserter in org.eclipse.jgit.transport
Fields in org.eclipse.jgit.transport declared as ObjectInserter Modifier and Type Field Description (package private) ObjectInserter
WalkFetchConnection. inserter
Inserter to write objects ontoWalkFetchConnection.local
.Methods in org.eclipse.jgit.transport with parameters of type ObjectInserter Modifier and Type Method Description private ObjectId
PushCertificateStore. saveCert(ObjectInserter inserter, DirCache dc, PushCertificateStore.PendingCert pc, ObjectId curr)
-