-
Methods in org.gitlab4j.api that return types with arguments of type LabelEvent
Modifier and Type |
Method |
Description |
List<LabelEvent> |
ResourceLabelEventsApi.getEpicLabelEvents(Object projectIdOrPath,
Integer epicId) |
Gets a list of all label events for an epic.
|
Pager<LabelEvent> |
ResourceLabelEventsApi.getEpicLabelEvents(Object projectIdOrPath,
Integer epicId,
int itemsPerPage) |
Gets a Pager of all label events for the specified epic.
|
Stream<LabelEvent> |
ResourceLabelEventsApi.getEpicLabelEventsStream(Object projectIdOrPath,
Integer epicId) |
Gets a Stream of all label events for he specified epic.
|
List<LabelEvent> |
ResourceLabelEventsApi.getIssueLabelEvents(Object projectIdOrPath,
Integer issueIid) |
Gets a list of all label events for a single issue.
|
Pager<LabelEvent> |
ResourceLabelEventsApi.getIssueLabelEvents(Object projectIdOrPath,
Integer issueIid,
int itemsPerPage) |
Gets a Pager of all label events for a single issue.
|
Stream<LabelEvent> |
ResourceLabelEventsApi.getIssueLabelEventsStream(Object projectIdOrPath,
Integer issueIid) |
Gets a Stream of all label events for a single issue.
|
List<LabelEvent> |
ResourceLabelEventsApi.getMergeRequestLabelEvents(Object projectIdOrPath,
Integer mergeRequestIid) |
Gets a list of all label events for a merge request.
|
Pager<LabelEvent> |
ResourceLabelEventsApi.getMergeRequestLabelEvents(Object projectIdOrPath,
Integer mergeRequestIid,
int itemsPerPage) |
Gets a Pager of all label events for the specified merge request.
|
Stream<LabelEvent> |
ResourceLabelEventsApi.getMergeRequestLabelEventsStream(Object projectIdOrPath,
Integer mergeRequestIid) |
Gets a Stream of all label events for he specified merge request.
|
Optional<LabelEvent> |
ResourceLabelEventsApi.getOptionalEpicLabelEvent(Object projectIdOrPath,
Integer epicId,
Integer resourceLabelEventId) |
Get an Optional instance holding a LabelEvent for a specific epic label event.
|
Optional<LabelEvent> |
ResourceLabelEventsApi.getOptionalIssueLabelEvent(Object projectIdOrPath,
Integer issueIid,
Integer resourceLabelEventId) |
Get an Optional instance holding a LabelEvent for a specific project issue
|
Optional<LabelEvent> |
ResourceLabelEventsApi.getOptionalMergeRequestLabelEvent(Object projectIdOrPath,
Integer mergeRequestIid,
Integer resourceLabelEventId) |
Get an Optional instance holding a LabelEvent for a specific merge request label event.
|