-
Methods in org.gitlab4j.api that return types with arguments of type Todo
Modifier and Type |
Method |
Description |
List<Todo> |
TodosApi.getDoneTodos() |
Get a List of done todos for the current user.
|
Pager<Todo> |
TodosApi.getDoneTodos(int itemsPerPage) |
Get a Pager of done todos for the current user.
|
Stream<Todo> |
TodosApi.getDoneTodosStream() |
Get a Stream of done todos for the current user.
|
List<Todo> |
TodosApi.getPendingTodos() |
Get a List of pending todos for the current user.
|
Pager<Todo> |
TodosApi.getPendingTodos(int itemsPerPage) |
Get a Pager of pending todos for the current user.
|
Stream<Todo> |
TodosApi.getPendingTodosStream() |
Get a Stream of pending todos for the current user.
|
List<Todo> |
TodosApi.getTodos(Constants.TodoAction action,
Integer authorId,
Integer projectId,
Integer groupId,
Constants.TodoState state,
Constants.TodoType type) |
Get a List of all todos that match the provided filter params.
|
Pager<Todo> |
TodosApi.getTodos(Constants.TodoAction action,
Integer authorId,
Integer projectId,
Integer groupId,
Constants.TodoState state,
Constants.TodoType type,
int itemsPerPage) |
Returns a Pager of todos that match the provided filter params.
|
Stream<Todo> |
TodosApi.getTodosStream(Constants.TodoAction action,
Integer authorId,
Integer projectId,
Integer groupId,
Constants.TodoState state,
Constants.TodoType type) |
Get a List of all todos that match the provided filter params.
|