Uses of Class
org.gitlab4j.api.Constants.PipelineOrderBy
-
Packages that use Constants.PipelineOrderBy Package Description org.gitlab4j.api -
-
Uses of Constants.PipelineOrderBy in org.gitlab4j.api
Methods in org.gitlab4j.api that return Constants.PipelineOrderBy Modifier and Type Method Description static Constants.PipelineOrderBy
Constants.PipelineOrderBy. forValue(String value)
static Constants.PipelineOrderBy
Constants.PipelineOrderBy. valueOf(String name)
Returns the enum constant of this type with the specified name.static Constants.PipelineOrderBy[]
Constants.PipelineOrderBy. 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.PipelineOrderBy 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.
-