org.eclipse.jgit.api
Class ListBranchCommand
java.lang.Object
org.eclipse.jgit.api.GitCommand<List<Ref>>
org.eclipse.jgit.api.ListBranchCommand
- All Implemented Interfaces:
- Callable<List<Ref>>
public class ListBranchCommand
- extends GitCommand<List<Ref>>
Used to obtain a list of branches.
- See Also:
- Git documentation about Branch
|
Nested Class Summary |
static class |
ListBranchCommand.ListMode
The modes available for listing branches (corresponding to the -r and -a
options) |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ListBranchCommand
protected ListBranchCommand(Repository repo)
- Parameters:
repo -
call
public List<Ref> call()
throws GitAPIException
- Description copied from class:
GitCommand
- Executes the command
- Specified by:
call in interface Callable<List<Ref>>- Specified by:
call in class GitCommand<List<Ref>>
- Returns:
- T a result. Each command has its own return type
- Throws:
GitAPIException - or subclass thereof when an error occurs
setListMode
public ListBranchCommand setListMode(ListBranchCommand.ListMode listMode)
- Parameters:
listMode - optional: corresponds to the -r/-a options; by default, only
local branches will be listed
- Returns:
- this instance
Copyright © 2012. All Rights Reserved.