-
Methods in org.gitlab4j.api that return types with arguments of type TreeItem
Modifier and Type |
Method |
Description |
List<TreeItem> |
RepositoryApi.getTree(Object projectIdOrPath) |
Get a list of repository files and directories in a project.
|
Pager<TreeItem> |
RepositoryApi.getTree(Object projectIdOrPath,
int itemsPerPage) |
Get a Pager of repository files and directories in a project.
|
List<TreeItem> |
RepositoryApi.getTree(Object projectIdOrPath,
String filePath,
String refName) |
Get a list of repository files and directories in a project.
|
Pager<TreeItem> |
RepositoryApi.getTree(Object projectIdOrPath,
String filePath,
String refName,
int itemsPerPage) |
Get a Pager of repository files and directories in a project.
|
List<TreeItem> |
RepositoryApi.getTree(Object projectIdOrPath,
String filePath,
String refName,
Boolean recursive) |
Get a list of repository files and directories in a project.
|
Pager<TreeItem> |
RepositoryApi.getTree(Object projectIdOrPath,
String filePath,
String refName,
Boolean recursive,
int itemsPerPage) |
Get a Pager of repository files and directories in a project.
|
Stream<TreeItem> |
RepositoryApi.getTreeStream(Object projectIdOrPath) |
Get a Stream of repository files and directories in a project.
|
Stream<TreeItem> |
RepositoryApi.getTreeStream(Object projectIdOrPath,
String filePath,
String refName) |
Get a Stream of repository files and directories in a project.
|
Stream<TreeItem> |
RepositoryApi.getTreeStream(Object projectIdOrPath,
String filePath,
String refName,
Boolean recursive) |
Get a Stream of repository files and directories in a project.
|