Uses of Class
org.eclipse.jgit.notes.Note
-
Packages that use Note Package Description org.eclipse.jgit.api High-level API commands (the porcelain of JGit).org.eclipse.jgit.notes Git notes processing (for commits, etc). -
-
Uses of Note in org.eclipse.jgit.api
Methods in org.eclipse.jgit.api that return Note Modifier and Type Method Description Note
AddNoteCommand. call()
Note
RemoveNoteCommand. call()
Note
ShowNoteCommand. call()
Methods in org.eclipse.jgit.api that return types with arguments of type Note Modifier and Type Method Description java.util.List<Note>
ListNotesCommand. call()
-
Uses of Note in org.eclipse.jgit.notes
Fields in org.eclipse.jgit.notes declared as Note Modifier and Type Field Description private Note[]
LeafBucket. notes
All note blobs in this bucket, sorted sequentially.Methods in org.eclipse.jgit.notes that return Note Modifier and Type Method Description (package private) Note
LeafBucket. get(int index)
private static Note
NoteMapMerger. get(LeafBucket b, int i)
(package private) Note
FanoutBucket. getNote(AnyObjectId objId, ObjectReader or)
(package private) Note
FanoutBucket.LazyNoteBucket. getNote(AnyObjectId objId, ObjectReader or)
(package private) Note
LeafBucket. getNote(AnyObjectId objId, ObjectReader or)
(package private) abstract Note
NoteBucket. getNote(AnyObjectId objId, ObjectReader reader)
Note
NoteMap. getNote(AnyObjectId id)
Lookup a note for a specific ObjectId.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.private static Note
NoteMapMerger. min(Note b, Note o, Note t)
private static Note
NoteMapMerger. sameNoteOrNull(Note min, Note other)
Methods in org.eclipse.jgit.notes that return types with arguments of type Note Modifier and Type Method Description (package private) java.util.Iterator<Note>
FanoutBucket. iterator(AnyObjectId objId, ObjectReader reader)
(package private) java.util.Iterator<Note>
FanoutBucket.LazyNoteBucket. iterator(AnyObjectId objId, ObjectReader reader)
(package private) java.util.Iterator<Note>
LeafBucket. iterator(AnyObjectId objId, ObjectReader reader)
(package private) abstract java.util.Iterator<Note>
NoteBucket. iterator(AnyObjectId objId, ObjectReader reader)
java.util.Iterator<Note>
NoteMap. iterator()
Methods in org.eclipse.jgit.notes with parameters of type Note Modifier and Type Method Description private static InMemoryNoteBucket
NoteMapMerger. addIfNotNull(InMemoryNoteBucket result, Note note)
(package private) InMemoryNoteBucket
FanoutBucket. append(Note note)
(package private) abstract InMemoryNoteBucket
InMemoryNoteBucket. append(Note note)
(package private) InMemoryNoteBucket
LeafBucket. append(Note note)
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.private static Note
NoteMapMerger. min(Note b, Note o, Note t)
private static java.lang.String
NotesMergeConflictException. noteData(Note n)
private static java.lang.String
NotesMergeConflictException. noteOn(Note base, Note ours, Note theirs)
private static boolean
NoteMapMerger. sameContent(Note a, Note b)
private static boolean
NoteMapMerger. sameNote(Note a, Note b)
private static Note
NoteMapMerger. sameNoteOrNull(Note min, Note other)
Constructors in org.eclipse.jgit.notes with parameters of type Note Constructor Description NotesMergeConflictException(Note base, Note ours, Note theirs)
Construct a NotesMergeConflictException for the specified base, ours and theirs note versions.
-