Uses of Class
org.gitlab4j.api.models.Label
-
Packages that use 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 Label
LabelsApi. createLabel(Object projectIdOrPath, String name, String color)
Create a labelLabel
LabelsApi. createLabel(Object projectIdOrPath, String name, String color, Integer priority)
Create a labelLabel
LabelsApi. createLabel(Object projectIdOrPath, String name, String color, String description)
Create a labelLabel
LabelsApi. createLabel(Object projectIdOrPath, String name, String color, String description, Integer priority)
Create a labelLabel
LabelsApi. subscribeLabel(Object projectIdOrPath, Integer labelId)
Subscribe a specified labelLabel
LabelsApi. unsubscribeLabel(Object projectIdOrPath, Integer labelId)
Unsubscribe a specified labelLabel
LabelsApi. updateLabel(Object projectIdOrPath, String name, String newName, String color, String description, Integer priority)
Update the specified labelLabel
LabelsApi. updateLabelColor(Object projectIdOrPath, String name, String color, String description, Integer priority)
Update the specified labelLabel
LabelsApi. updateLabelName(Object projectIdOrPath, String name, String newName, String description, Integer priority)
Update the specified labelMethods in org.gitlab4j.api that return types with arguments of type Label Modifier and Type Method Description List<Label>
LabelsApi. getLabels(Object projectIdOrPath)
Get all labels of the specified project.Pager<Label>
LabelsApi. getLabels(Object projectIdOrPath, int itemsPerPage)
Get a Pager of all labels of the specified project.List<Label>
LabelsApi. getLabels(Object projectIdOrPath, int page, int perPage)
Get all labels of the specified project to using the specified page and per page settingStream<Label>
LabelsApi. getLabelsStream(Object projectIdOrPath)
Get a Stream of all labels of the specified project. -
Uses of Label in org.gitlab4j.api.models
Methods in org.gitlab4j.api.models that return Label Modifier and Type Method Description Label
BoardList. getLabel()
Methods in org.gitlab4j.api.models with parameters of type Label Modifier and Type Method Description void
BoardList. setLabel(Label label)
-