-
Methods in org.gitlab4j.api that return Tag
| Modifier and Type |
Method |
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.
|
Methods in org.gitlab4j.api that return types with arguments of type Tag
| Modifier and Type |
Method |
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.
|
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.
|
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.
|
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.
|