Uses of Class
io.gitea.model.Tag
-
Packages that use Tag Package Description io.gitea.api io.gitea.model -
-
Uses of Tag in io.gitea.api
Methods in io.gitea.api that return Tag Modifier and Type Method Description TagRepositoryApi. repoCreateTag(java.lang.String owner, java.lang.String repo, CreateTagOption body)Create a new git tag in a repositoryTagRepositoryApi. repoGetTag(java.lang.String owner, java.lang.String repo, java.lang.String tag)Get the tag of a repository by tag nameMethods in io.gitea.api that return types with arguments of type Tag Modifier and Type Method Description ApiResponse<Tag>RepositoryApi. repoCreateTagWithHttpInfo(java.lang.String owner, java.lang.String repo, CreateTagOption body)Create a new git tag in a repositoryApiResponse<Tag>RepositoryApi. repoGetTagWithHttpInfo(java.lang.String owner, java.lang.String repo, java.lang.String tag)Get the tag of a repository by tag namejava.util.List<Tag>RepositoryApi. repoListTags(java.lang.String owner, java.lang.String repo, java.lang.Integer page, java.lang.Integer limit)List a repository's tagsApiResponse<java.util.List<Tag>>RepositoryApi. repoListTagsWithHttpInfo(java.lang.String owner, java.lang.String repo, java.lang.Integer page, java.lang.Integer limit)List a repository's tagsMethod parameters in io.gitea.api with type arguments of type Tag Modifier and Type Method Description com.squareup.okhttp.CallRepositoryApi. repoCreateTagAsync(java.lang.String owner, java.lang.String repo, CreateTagOption body, ApiCallback<Tag> callback)Create a new git tag in a repository (asynchronously)com.squareup.okhttp.CallRepositoryApi. repoGetTagAsync(java.lang.String owner, java.lang.String repo, java.lang.String tag, ApiCallback<Tag> callback)Get the tag of a repository by tag name (asynchronously)com.squareup.okhttp.CallRepositoryApi. repoListTagsAsync(java.lang.String owner, java.lang.String repo, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Tag>> callback)List a repository's tags (asynchronously) -
Uses of Tag in io.gitea.model
Methods in io.gitea.model that return Tag Modifier and Type Method Description TagTag. commit(CommitMeta commit)TagTag. id(java.lang.String id)TagTag. message(java.lang.String message)TagTag. name(java.lang.String name)TagTag. tarballUrl(java.lang.String tarballUrl)TagTag. zipballUrl(java.lang.String zipballUrl)
-