Uses of Class
org.gitlab4j.api.models.Board
-
Packages that use Board Package Description org.gitlab4j.api -
-
Uses of Board in org.gitlab4j.api
Methods in org.gitlab4j.api that return Board Modifier and Type Method Description BoardBoardsApi. createBoard(Object projectIdOrPath, String name)Creates a new Issue Board.BoardBoardsApi. getBoard(Object projectIdOrPath, Integer boardId)Get a single issue board.Methods in org.gitlab4j.api that return types with arguments of type Board Modifier and Type Method Description List<Board>BoardsApi. getBoards(Object projectIdOrPath)Lists Issue Boards in the given project.Pager<Board>BoardsApi. getBoards(Object projectIdOrPath, int itemsPerPage)Get a Pager of all issue boards for the specified project.List<Board>BoardsApi. getBoards(Object projectIdOrPath, int page, int perPage)Get all issue boards for the specified project using the specified page and per page settingStream<Board>BoardsApi. getBoardsStream(Object projectIdOrPath)Get a Stream of all issue boards for the specified project.Optional<Board>BoardsApi. getOptionalBoard(Object projectIdOrPath, Integer boardId)Get an issue board as an Optional instance.
-