Uses of Class
org.gitlab4j.api.models.BoardList
-
Packages that use BoardList Package Description org.gitlab4j.api org.gitlab4j.api.models -
-
Uses of BoardList in org.gitlab4j.api
Methods in org.gitlab4j.api that return BoardList Modifier and Type Method Description BoardList
BoardsApi. createBoardList(Object projectIdOrPath, Integer boardId, Integer labelId)
Creates a new Issue Board list.BoardList
BoardsApi. getBoardList(Object projectIdOrPath, Integer boardId, Integer listId)
Get a single issue board list.BoardList
BoardsApi. updateBoard(Object projectIdOrPath, Integer boardId, String name, Integer assigneeId, Integer milestoneId, String labels, Integer weight)
Updates an existing Issue Board.BoardList
BoardsApi. updateBoardList(Object projectIdOrPath, Integer boardId, Integer listId, Integer position)
Updates an existing Issue Board list.Methods in org.gitlab4j.api that return types with arguments of type BoardList Modifier and Type Method Description List<BoardList>
BoardsApi. getBoardLists(Object projectIdOrPath, Integer boardId)
Get a list of the board’s lists.Pager<BoardList>
BoardsApi. getBoardLists(Object projectIdOrPath, Integer boardId, int itemsPerPage)
Get a Pager of the board’s lists.List<BoardList>
BoardsApi. getBoardLists(Object projectIdOrPath, Integer boardId, int page, int perPage)
Get a list of the board’s lists for the specified project to using the specified page and per page setting.Stream<BoardList>
BoardsApi. getBoardsListsStream(Object projectIdOrPath, Integer boardId)
Get a Stream of the board’s lists.Optional<BoardList>
BoardsApi. getOptionalBoardList(Object projectIdOrPath, Integer boardId, Integer listId)
Get a single issue board list as an Optional instance. -
Uses of BoardList in org.gitlab4j.api.models
Methods in org.gitlab4j.api.models that return types with arguments of type BoardList Modifier and Type Method Description List<BoardList>
Board. getLists()
Method parameters in org.gitlab4j.api.models with type arguments of type BoardList Modifier and Type Method Description void
Board. setLists(List<BoardList> lists)
-