Uses of Class
org.gitlab4j.api.Constants.StateEvent
Package | Description |
---|---|
org.gitlab4j.api | |
org.gitlab4j.api.models |
-
Uses of Constants.StateEvent in org.gitlab4j.api
Methods in org.gitlab4j.api that return Constants.StateEvent Modifier and Type Method Description static Constants.StateEvent
Constants.StateEvent. forValue(String value)
static Constants.StateEvent
Constants.StateEvent. valueOf(String name)
Returns the enum constant of this type with the specified name.static Constants.StateEvent[]
Constants.StateEvent. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.gitlab4j.api with parameters of type Constants.StateEvent Modifier and Type Method Description Issue
IssuesApi. updateIssue(Object projectIdOrPath, Integer issueIid, String title, String description, Boolean confidential, List<Integer> assigneeIds, Integer milestoneId, String labels, Constants.StateEvent stateEvent, Date updatedAt, Date dueDate)
Updates an existing project issue.MergeRequest
MergeRequestApi. updateMergeRequest(Object projectIdOrPath, Integer mergeRequestIid, String targetBranch, String title, Integer assigneeId, String description, Constants.StateEvent stateEvent, String labels, Integer milestoneId, Boolean removeSourceBranch, Boolean squash, Boolean discussionLocked, Boolean allowCollaboration)
Updates an existing merge request. -
Uses of Constants.StateEvent in org.gitlab4j.api.models
Methods in org.gitlab4j.api.models with parameters of type Constants.StateEvent Modifier and Type Method Description MergeRequestParams
MergeRequestParams. withStateEvent(Constants.StateEvent stateEvent)
New state (close/reopen).