Uses of Class
io.gitea.model.Label
-
Packages that use Label Package Description io.gitea.api io.gitea.model -
-
Uses of Label in io.gitea.api
Methods in io.gitea.api that return Label Modifier and Type Method Description LabelIssueApi. issueCreateLabel(java.lang.String owner, java.lang.String repo, CreateLabelOption body)Create a labelLabelIssueApi. issueEditLabel(java.lang.String owner, java.lang.String repo, java.lang.Long id, EditLabelOption body)Update a labelLabelIssueApi. issueGetLabel(java.lang.String owner, java.lang.String repo, java.lang.Long id)Get a single labelLabelOrganizationApi. orgCreateLabel(java.lang.String org, CreateLabelOption body)Create a label for an organizationLabelOrganizationApi. orgEditLabel(java.lang.String org, java.lang.Long id, EditLabelOption body)Update a labelLabelOrganizationApi. orgGetLabel(java.lang.String org, java.lang.Long id)Get a single labelMethods in io.gitea.api that return types with arguments of type Label Modifier and Type Method Description java.util.List<Label>IssueApi. issueAddLabel(java.lang.String owner, java.lang.String repo, java.lang.Long index, IssueLabelsOption body)Add a label to an issueApiResponse<java.util.List<Label>>IssueApi. issueAddLabelWithHttpInfo(java.lang.String owner, java.lang.String repo, java.lang.Long index, IssueLabelsOption body)Add a label to an issueApiResponse<Label>IssueApi. issueCreateLabelWithHttpInfo(java.lang.String owner, java.lang.String repo, CreateLabelOption body)Create a labelApiResponse<Label>IssueApi. issueEditLabelWithHttpInfo(java.lang.String owner, java.lang.String repo, java.lang.Long id, EditLabelOption body)Update a labeljava.util.List<Label>IssueApi. issueGetLabels(java.lang.String owner, java.lang.String repo, java.lang.Long index)Get an issue's labelsApiResponse<java.util.List<Label>>IssueApi. issueGetLabelsWithHttpInfo(java.lang.String owner, java.lang.String repo, java.lang.Long index)Get an issue's labelsApiResponse<Label>IssueApi. issueGetLabelWithHttpInfo(java.lang.String owner, java.lang.String repo, java.lang.Long id)Get a single labeljava.util.List<Label>IssueApi. issueListLabels(java.lang.String owner, java.lang.String repo, java.lang.Integer page, java.lang.Integer limit)Get all of a repository's labelsApiResponse<java.util.List<Label>>IssueApi. issueListLabelsWithHttpInfo(java.lang.String owner, java.lang.String repo, java.lang.Integer page, java.lang.Integer limit)Get all of a repository's labelsjava.util.List<Label>IssueApi. issueReplaceLabels(java.lang.String owner, java.lang.String repo, java.lang.Long index, IssueLabelsOption body)Replace an issue's labelsApiResponse<java.util.List<Label>>IssueApi. issueReplaceLabelsWithHttpInfo(java.lang.String owner, java.lang.String repo, java.lang.Long index, IssueLabelsOption body)Replace an issue's labelsApiResponse<Label>OrganizationApi. orgCreateLabelWithHttpInfo(java.lang.String org, CreateLabelOption body)Create a label for an organizationApiResponse<Label>OrganizationApi. orgEditLabelWithHttpInfo(java.lang.String org, java.lang.Long id, EditLabelOption body)Update a labelApiResponse<Label>OrganizationApi. orgGetLabelWithHttpInfo(java.lang.String org, java.lang.Long id)Get a single labeljava.util.List<Label>OrganizationApi. orgListLabels(java.lang.String org, java.lang.Integer page, java.lang.Integer limit)List an organization's labelsApiResponse<java.util.List<Label>>OrganizationApi. orgListLabelsWithHttpInfo(java.lang.String org, java.lang.Integer page, java.lang.Integer limit)List an organization's labelsMethod parameters in io.gitea.api with type arguments of type Label Modifier and Type Method Description com.squareup.okhttp.CallIssueApi. issueAddLabelAsync(java.lang.String owner, java.lang.String repo, java.lang.Long index, IssueLabelsOption body, ApiCallback<java.util.List<Label>> callback)Add a label to an issue (asynchronously)com.squareup.okhttp.CallIssueApi. issueCreateLabelAsync(java.lang.String owner, java.lang.String repo, CreateLabelOption body, ApiCallback<Label> callback)Create a label (asynchronously)com.squareup.okhttp.CallIssueApi. issueEditLabelAsync(java.lang.String owner, java.lang.String repo, java.lang.Long id, EditLabelOption body, ApiCallback<Label> callback)Update a label (asynchronously)com.squareup.okhttp.CallIssueApi. issueGetLabelAsync(java.lang.String owner, java.lang.String repo, java.lang.Long id, ApiCallback<Label> callback)Get a single label (asynchronously)com.squareup.okhttp.CallIssueApi. issueGetLabelsAsync(java.lang.String owner, java.lang.String repo, java.lang.Long index, ApiCallback<java.util.List<Label>> callback)Get an issue's labels (asynchronously)com.squareup.okhttp.CallIssueApi. issueListLabelsAsync(java.lang.String owner, java.lang.String repo, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Label>> callback)Get all of a repository's labels (asynchronously)com.squareup.okhttp.CallIssueApi. issueReplaceLabelsAsync(java.lang.String owner, java.lang.String repo, java.lang.Long index, IssueLabelsOption body, ApiCallback<java.util.List<Label>> callback)Replace an issue's labels (asynchronously)com.squareup.okhttp.CallOrganizationApi. orgCreateLabelAsync(java.lang.String org, CreateLabelOption body, ApiCallback<Label> callback)Create a label for an organization (asynchronously)com.squareup.okhttp.CallOrganizationApi. orgEditLabelAsync(java.lang.String org, java.lang.Long id, EditLabelOption body, ApiCallback<Label> callback)Update a label (asynchronously)com.squareup.okhttp.CallOrganizationApi. orgGetLabelAsync(java.lang.String org, java.lang.Long id, ApiCallback<Label> callback)Get a single label (asynchronously)com.squareup.okhttp.CallOrganizationApi. orgListLabelsAsync(java.lang.String org, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Label>> callback)List an organization's labels (asynchronously) -
Uses of Label in io.gitea.model
Methods in io.gitea.model that return Label Modifier and Type Method Description LabelLabel. color(java.lang.String color)LabelLabel. description(java.lang.String description)LabelTimelineComment. getLabel()Get labelLabelLabel. id(java.lang.Long id)LabelLabel. name(java.lang.String name)LabelLabel. url(java.lang.String url)Methods in io.gitea.model that return types with arguments of type Label Modifier and Type Method Description java.util.List<Label>Issue. getLabels()Get labelsjava.util.List<Label>PullRequest. getLabels()Get labelsMethods in io.gitea.model with parameters of type Label Modifier and Type Method Description IssueIssue. addLabelsItem(Label labelsItem)PullRequestPullRequest. addLabelsItem(Label labelsItem)TimelineCommentTimelineComment. label(Label label)voidTimelineComment. setLabel(Label label)Method parameters in io.gitea.model with type arguments of type Label Modifier and Type Method Description IssueIssue. labels(java.util.List<Label> labels)PullRequestPullRequest. labels(java.util.List<Label> labels)voidIssue. setLabels(java.util.List<Label> labels)voidPullRequest. setLabels(java.util.List<Label> labels)
-