-
Methods in org.gitlab4j.api that return types with arguments of type Branch
Modifier and Type |
Method |
Description |
List<Branch> |
RepositoryApi.getBranches(Object projectIdOrPath) |
Get a list of repository branches from a project, sorted by name alphabetically.
|
Pager<Branch> |
RepositoryApi.getBranches(Object projectIdOrPath,
int itemsPerPage) |
Get a Pager of repository branches from a project, sorted by name alphabetically.
|
List<Branch> |
RepositoryApi.getBranches(Object projectIdOrPath,
int page,
int perPage) |
Get a list of repository branches from a project, sorted by name alphabetically.
|
List<Branch> |
RepositoryApi.getBranches(Object projectIdOrPath,
String search) |
Get a List of repository branches from a project, sorted by name alphabetically, filter by the search term.
|
Pager<Branch> |
RepositoryApi.getBranches(Object projectIdOrPath,
String search,
int itemsPerPage) |
Get a Pager of repository branches from a project, sorted by name alphabetically, filter by the search term.
|
Stream<Branch> |
RepositoryApi.getBranchesStream(Object projectIdOrPath) |
Get a Stream of repository branches from a project, sorted by name alphabetically.
|
Stream<Branch> |
RepositoryApi.getBranchesStream(Object projectIdOrPath,
String search) |
Get a Stream of repository branches from a project, sorted by name alphabetically, filter by the search term.
|
Optional<Branch> |
RepositoryApi.getOptionalBranch(Object projectIdOrPath,
String branchName) |
Get an Optional instance with the value for the specific repository branch.
|
-