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 Label
LabelsApi. createGroupLabel(Object groupIdOrPath, Label labelProperties)
Create a group label.Label
LabelsApi. createLabel(Object projectIdOrPath, String name, String color)
Deprecated.Label
LabelsApi. createLabel(Object projectIdOrPath, String name, String color, Integer priority)
Deprecated.Replaced by theLabelsApi.createProjectLabel(Object, Label)
method.Label
LabelsApi. createLabel(Object projectIdOrPath, String name, String color, String description)
Deprecated.Replaced by theLabelsApi.createProjectLabel(Object, Label)
method.Label
LabelsApi. createLabel(Object projectIdOrPath, String name, String color, String description, Integer priority)
Deprecated.Replaced by theLabelsApi.createProjectLabel(Object, Label)
method.Label
LabelsApi. createProjectLabel(Object projectIdOrPath, Label labelProperties)
Create a project label.Label
LabelsApi. getGroupLabel(Object groupIdOrPath, Object labelIdOrName)
Get a single group label.Label
LabelsApi. getProjectLabel(Object projectIdOrPath, Object labelIdOrName)
Get a single project label.Label
LabelsApi. subscribeGroupLabel(Object groupIdOrPath, Object labelIdOrName)
Subscribe a specified group label.Label
LabelsApi. subscribeLabel(Object projectIdOrPath, Integer labelId)
Deprecated.Replaced by theLabelsApi.subscribeProjectLabel(Object, Object)
method.Label
LabelsApi. subscribeProjectLabel(Object projectIdOrPath, Object labelIdOrName)
Subscribe a specified project label.Label
LabelsApi. unsubscribeGroupLabel(Object groupIdOrPath, Object labelIdOrName)
Unsubscribe a specified group label.Label
LabelsApi. unsubscribeLabel(Object projectIdOrPath, Integer labelId)
Deprecated.Replaced by theLabelsApi.unsubscribeProjectLabel(Object, Object)
method.Label
LabelsApi. unsubscribeProjectLabel(Object projectIdOrPath, Object labelIdOrName)
Unsubscribe a specified project label.Label
LabelsApi. updateGroupLabel(Object groupIdOrPath, Object labelIdOrName, Label labelConfig)
Update the specified label.Label
LabelsApi. updateLabel(Object projectIdOrPath, String name, String newName, String color, String description, Integer priority)
Deprecated.Label
LabelsApi. updateLabelColor(Object projectIdOrPath, String name, String color, String description, Integer priority)
Deprecated.Label
LabelsApi. updateLabelName(Object projectIdOrPath, String name, String newName, String description, Integer priority)
Deprecated.Label
LabelsApi. 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 Label
LabelsApi. createGroupLabel(Object groupIdOrPath, Label labelProperties)
Create a group label.Label
LabelsApi. createProjectLabel(Object projectIdOrPath, Label labelProperties)
Create a project label.Label
LabelsApi. updateGroupLabel(Object groupIdOrPath, Object labelIdOrName, Label labelConfig)
Update the specified label.Label
LabelsApi. 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 Label
BoardList. getLabel()
Label
LabelEvent. getLabel()
Label
Label. withColor(String color)
Label
Label. withDescription(String description)
Label
Label. withName(String name)
Label
Label. withPriority(Integer priority)
LabelsApi.createProjectLabel(Object, Label)
method.