Uses of Class
org.gitlab4j.api.models.WikiPage
Package | Description |
---|---|
org.gitlab4j.api |
-
Uses of WikiPage in org.gitlab4j.api
Methods in org.gitlab4j.api that return WikiPage Modifier and Type Method Description WikiPage
WikisApi. createPage(Object projectIdOrPath, String title, String content)
Creates a new project wiki page.WikiPage
WikisApi. getPage(Object projectIdOrPath, String slug)
Get a single page of project wiki.WikiPage
WikisApi. updatePage(Object projectIdOrPath, String slug, String title, String content)
Updates an existing project wiki page.Methods in org.gitlab4j.api that return types with arguments of type WikiPage Modifier and Type Method Description Optional<WikiPage>
WikisApi. getOptionalPage(Object projectIdOrPath, String slug)
Get a single page of project wiki as an Optional instance.List<WikiPage>
WikisApi. getPages(Object projectIdOrPath)
Get a list of pages in project wiki.List<WikiPage>
WikisApi. getPages(Object projectIdOrPath, boolean withContent)
Get a List of pages in project wiki.Pager<WikiPage>
WikisApi. getPages(Object projectIdOrPath, boolean withContent, int itemsPerPage)
Get a Pager of pages in project wiki.Pager<WikiPage>
WikisApi. getPages(Object projectIdOrPath, int itemsPerPage)
Get a Pager of pages in project wiki.List<WikiPage>
WikisApi. getPages(Object projectIdOrPath, int page, int perPage)
Deprecated.Stream<WikiPage>
WikisApi. getPagesStream(Object projectIdOrPath)
Get a Stream of pages in project wiki.Stream<WikiPage>
WikisApi. getPagesStream(Object projectIdOrPath, boolean withContent)
Get a Stream of pages in project wiki.
WikisApi.getPages(Object, boolean, int)