Uses of Class
org.gitlab4j.api.Constants.MilestoneState
-
Packages that use Constants.MilestoneState Package Description org.gitlab4j.api -
-
Uses of Constants.MilestoneState in org.gitlab4j.api
Methods in org.gitlab4j.api that return Constants.MilestoneState Modifier and Type Method Description static Constants.MilestoneState
Constants.MilestoneState. forValue(String value)
static Constants.MilestoneState
Constants.MilestoneState. valueOf(String name)
Returns the enum constant of this type with the specified name.static Constants.MilestoneState[]
Constants.MilestoneState. 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.MilestoneState Modifier and Type Method Description List<Milestone>
MilestonesApi. getGroupMilestones(Object groupIdOrPath, Constants.MilestoneState state)
Get a list of group milestones that have the specified state.List<Milestone>
MilestonesApi. getGroupMilestones(Object groupIdOrPath, Constants.MilestoneState state, String search)
Get a list of group milestones that have the specified state and match the search string.List<Milestone>
MilestonesApi. getMilestones(Object projectIdOrPath, Constants.MilestoneState state)
Get a list of project milestones that have the specified state.List<Milestone>
MilestonesApi. getMilestones(Object projectIdOrPath, Constants.MilestoneState state, String search)
Get a list of project milestones that have the specified state and match the search string.Milestone
MilestonesApi. updateGroupMilestone(Object groupIdOrPath, Integer milestoneId, String title, String description, Date dueDate, Date startDate, Constants.MilestoneState milestoneState)
Update the specified group milestone.Milestone
MilestonesApi. updateMilestone(Object projectIdOrPath, Integer milestoneId, String title, String description, Date dueDate, Date startDate, Constants.MilestoneState milestoneState)
Update the specified milestone.
-