| Package | Description |
|---|---|
| org.gitlab4j.api |
| Modifier and Type | Method and Description |
|---|---|
Tag |
TagsApi.createTag(Object projectIdOrPath,
String tagName,
String ref)
Creates a tag on a particular ref of the given project.
|
Tag |
TagsApi.createTag(Object projectIdOrPath,
String tagName,
String ref,
String message,
File releaseNotesFile)
Creates a tag on a particular ref of a given project.
|
Tag |
TagsApi.createTag(Object projectIdOrPath,
String tagName,
String ref,
String message,
String releaseNotes)
Creates a tag on a particular ref of the given project with optional message and release notes.
|
Tag |
TagsApi.getTag(Object projectIdOrPath,
String tagName)
Get a specific repository tag determined by its name.
|
| Modifier and Type | Method and Description |
|---|---|
Optional<Tag> |
TagsApi.getOptionalTag(Object projectIdOrPath,
String tagName)
Get an Optional instance holding a Tag instance of a specific repository tag determined by its name.
|
List<Tag> |
TagsApi.getTags(Object projectIdOrPath)
Get a list of repository tags from a project, sorted by name in reverse alphabetical order.
|
List<Tag> |
TagsApi.getTags(Object projectIdOrPath,
Constants.TagOrderBy orderBy,
Constants.SortOrder sortOrder,
String search)
Get a list of repository tags from a project, sorted by name in reverse alphabetical order.
|
Pager<Tag> |
TagsApi.getTags(Object projectIdOrPath,
Constants.TagOrderBy orderBy,
Constants.SortOrder sortOrder,
String search,
int itemsPerPage)
Get a list of repository tags from a project, sorted by name in reverse alphabetical order.
|
List<Tag> |
TagsApi.getTags(Object projectIdOrPath,
Constants.TagOrderBy orderBy,
Constants.SortOrder sortOrder,
String search,
int page,
int perPage)
Get a list of repository tags from a project, sorted by name in reverse alphabetical order and in the specified page range.
|
Pager<Tag> |
TagsApi.getTags(Object projectIdOrPath,
int itemsPerPage)
Get a list of repository tags from a project, sorted by name in reverse alphabetical order.
|
List<Tag> |
TagsApi.getTags(Object projectIdOrPath,
int page,
int perPage)
Get a list of repository tags from a project, sorted by name in reverse alphabetical order and in the specified page range.
|
Stream<Tag> |
TagsApi.getTagsStream(Object projectIdOrPath)
Get a Stream of repository tags from a project, sorted by name in reverse alphabetical order.
|
Stream<Tag> |
TagsApi.getTagsStream(Object projectIdOrPath,
Constants.TagOrderBy orderBy,
Constants.SortOrder sortOrder,
String search)
Get a Stream of repository tags from a project, sorted by name in reverse alphabetical order.
|
Copyright © 2021. All rights reserved.