Uses of Class
org.gitlab4j.api.models.PipelineStatus
-
Packages that use PipelineStatus Package Description org.gitlab4j.api org.gitlab4j.api.models -
-
Uses of PipelineStatus in org.gitlab4j.api
Methods in org.gitlab4j.api with parameters of type PipelineStatus Modifier and Type Method Description List<Pipeline>
PipelineApi. getPipelines(Object projectIdOrPath, Constants.PipelineScope scope, PipelineStatus status, String ref, boolean yamlErrors, String name, String username, Constants.PipelineOrderBy orderBy, Constants.SortOrder sort)
Get a list of pipelines in a project.Pager<Pipeline>
PipelineApi. getPipelines(Object projectIdOrPath, Constants.PipelineScope scope, PipelineStatus status, String ref, boolean yamlErrors, String name, String username, Constants.PipelineOrderBy orderBy, Constants.SortOrder sort, int itemsPerPage)
Get a Pager of pipelines in a project.List<Pipeline>
PipelineApi. getPipelines(Object projectIdOrPath, Constants.PipelineScope scope, PipelineStatus status, String ref, boolean yamlErrors, String name, String username, Constants.PipelineOrderBy orderBy, Constants.SortOrder sort, int page, int perPage)
Get a list of pipelines in a project in the specified page range.Stream<Pipeline>
PipelineApi. getPipelinesStream(Object projectIdOrPath, Constants.PipelineScope scope, PipelineStatus status, String ref, boolean yamlErrors, String name, String username, Constants.PipelineOrderBy orderBy, Constants.SortOrder sort)
Get a Stream of pipelines in a project. -
Uses of PipelineStatus in org.gitlab4j.api.models
Methods in org.gitlab4j.api.models that return PipelineStatus Modifier and Type Method Description static PipelineStatus
PipelineStatus. forValue(String value)
PipelineStatus
Pipeline. getStatus()
static PipelineStatus
PipelineStatus. valueOf(String name)
Returns the enum constant of this type with the specified name.static PipelineStatus[]
PipelineStatus. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.gitlab4j.api.models with parameters of type PipelineStatus Modifier and Type Method Description void
Pipeline. setStatus(PipelineStatus status)
-