Uses of Class
org.gitlab4j.api.models.Label
| Package | Description |
|---|---|
| org.gitlab4j.api | |
| org.gitlab4j.api.models |
-
Uses of Label in org.gitlab4j.api
Methods in org.gitlab4j.api that return Label Modifier and Type Method Description LabelLabelsApi. createGroupLabel(Object groupIdOrPath, Label labelProperties)Create a group label.LabelLabelsApi. createLabel(Object projectIdOrPath, String name, String color)Deprecated.LabelLabelsApi. createLabel(Object projectIdOrPath, String name, String color, Integer priority)Deprecated.Replaced by theLabelsApi.createProjectLabel(Object, Label)method.LabelLabelsApi. createLabel(Object projectIdOrPath, String name, String color, String description)Deprecated.Replaced by theLabelsApi.createProjectLabel(Object, Label)method.LabelLabelsApi. createLabel(Object projectIdOrPath, String name, String color, String description, Integer priority)Deprecated.Replaced by theLabelsApi.createProjectLabel(Object, Label)method.LabelLabelsApi. createProjectLabel(Object projectIdOrPath, Label labelProperties)Create a project label.LabelLabelsApi. getGroupLabel(Object groupIdOrPath, Object labelIdOrName)Get a single group label.LabelLabelsApi. getProjectLabel(Object projectIdOrPath, Object labelIdOrName)Get a single project label.LabelLabelsApi. subscribeGroupLabel(Object groupIdOrPath, Object labelIdOrName)Subscribe a specified group label.LabelLabelsApi. subscribeLabel(Object projectIdOrPath, Integer labelId)Deprecated.Replaced by theLabelsApi.subscribeProjectLabel(Object, Object)method.LabelLabelsApi. subscribeProjectLabel(Object projectIdOrPath, Object labelIdOrName)Subscribe a specified project label.LabelLabelsApi. unsubscribeGroupLabel(Object groupIdOrPath, Object labelIdOrName)Unsubscribe a specified group label.LabelLabelsApi. unsubscribeLabel(Object projectIdOrPath, Integer labelId)Deprecated.Replaced by theLabelsApi.unsubscribeProjectLabel(Object, Object)method.LabelLabelsApi. unsubscribeProjectLabel(Object projectIdOrPath, Object labelIdOrName)Unsubscribe a specified project label.LabelLabelsApi. updateGroupLabel(Object groupIdOrPath, Object labelIdOrName, Label labelConfig)Update the specified label.LabelLabelsApi. updateLabel(Object projectIdOrPath, String name, String newName, String color, String description, Integer priority)Deprecated.LabelLabelsApi. updateLabelColor(Object projectIdOrPath, String name, String color, String description, Integer priority)Deprecated.LabelLabelsApi. updateLabelName(Object projectIdOrPath, String name, String newName, String description, Integer priority)Deprecated.LabelLabelsApi. updateProjectLabel(Object projectIdOrPath, Object labelIdOrName, Label labelConfig)Update the specified project label.Methods in org.gitlab4j.api that return types with arguments of type Label Modifier and Type Method Description List<Label>LabelsApi. getGroupLabels(Object groupIdOrPath)Get all labels of the specified group.Pager<Label>LabelsApi. getGroupLabels(Object groupIdOrPath, int itemsPerPage)Get a Pager of all labels of the specified group.Stream<Label>LabelsApi. getGroupLabelsStream(Object groupIdOrPath)Get a Stream of all labels of the specified group.List<Label>LabelsApi. getLabels(Object projectIdOrPath)Deprecated.Replaced by theLabelsApi.getProjectLabels(Object)method.Pager<Label>LabelsApi. getLabels(Object projectIdOrPath, int itemsPerPage)Deprecated.Replaced by theLabelsApi.getProjectLabels(Object, int)method.List<Label>LabelsApi. getLabels(Object projectIdOrPath, int page, int perPage)Deprecated.Will be removed in the next major release (5.0.0)Stream<Label>LabelsApi. getLabelsStream(Object projectIdOrPath)Deprecated.Replaced by theLabelsApi.getProjectLabelsStream(Object)method.Optional<Label>LabelsApi. getOptionalGroupLabel(Object groupIdOrPath, Object labelIdOrName)Get a single group label as the value of an Optional.Optional<Label>LabelsApi. getOptionalProjectLabel(Object projectIdOrPath, Object labelIdOrName)Get a single project label as the value of an Optional.List<Label>LabelsApi. getProjectLabels(Object projectIdOrPath)Get all labels of the specified project.Pager<Label>LabelsApi. getProjectLabels(Object projectIdOrPath, int itemsPerPage)Get a Pager of all labels of the specified project.Stream<Label>LabelsApi. getProjectLabelsStream(Object projectIdOrPath)Get a Stream of all labels of the specified project.Methods in org.gitlab4j.api with parameters of type Label Modifier and Type Method Description LabelLabelsApi. createGroupLabel(Object groupIdOrPath, Label labelProperties)Create a group label.LabelLabelsApi. createProjectLabel(Object projectIdOrPath, Label labelProperties)Create a project label.LabelLabelsApi. updateGroupLabel(Object groupIdOrPath, Object labelIdOrName, Label labelConfig)Update the specified label.LabelLabelsApi. updateProjectLabel(Object projectIdOrPath, Object labelIdOrName, Label labelConfig)Update the specified project label. -
Uses of Label in org.gitlab4j.api.models
Methods in org.gitlab4j.api.models that return Label Modifier and Type Method Description LabelBoardList. getLabel()LabelLabelEvent. getLabel()LabelLabel. withColor(String color)LabelLabel. withDescription(String description)LabelLabel. withName(String name)LabelLabel. withPriority(Integer priority)
LabelsApi.createProjectLabel(Object, Label)method.