Package org.eclipse.jgit.api
Class ListNotesCommand
- java.lang.Object
-
- org.eclipse.jgit.api.GitCommand<List<Note>>
-
- org.eclipse.jgit.api.ListNotesCommand
-
public class ListNotesCommand extends GitCommand<List<Note>>
List object notes.- See Also:
- Git documentation about Notes
-
-
Field Summary
-
Fields inherited from class org.eclipse.jgit.api.GitCommand
repo
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedListNotesCommand(Repository repo)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Note>call()Executes the commandListNotesCommandsetNotesRef(String notesRef)-
Methods inherited from class org.eclipse.jgit.api.GitCommand
checkCallable, getRepository, setCallable
-
-
-
-
Constructor Detail
-
ListNotesCommand
protected ListNotesCommand(Repository repo)
- Parameters:
repo-
-
-
Method Detail
-
call
public List<Note> call() throws GitAPIException
Description copied from class:GitCommandExecutes the command- Specified by:
callin interfaceCallable<List<Note>>- Specified by:
callin classGitCommand<List<Note>>- Returns:
- the requested notes
- Throws:
GitAPIException- or subclass thereof when an error occurs
-
setNotesRef
public ListNotesCommand setNotesRef(String notesRef)
- Parameters:
notesRef- the ref to read notes from. Note, the default value ofConstants.R_NOTES_COMMITSwill be used if nothing is set- Returns:
this- See Also:
Constants.R_NOTES_COMMITS
-
-