Uses of Class
org.gitlab4j.api.models.Runner.RunnerStatus
-
Packages that use Runner.RunnerStatus Package Description org.gitlab4j.api org.gitlab4j.api.models -
-
Uses of Runner.RunnerStatus in org.gitlab4j.api
Methods in org.gitlab4j.api with parameters of type Runner.RunnerStatus Modifier and Type Method Description List<Runner>
RunnersApi. getAllRunners(Runner.RunnerStatus scope)
Get a list of all runners in the GitLab instance (specific and shared).Pager<Runner>
RunnersApi. getAllRunners(Runner.RunnerStatus scope, int itemsPerPage)
Get a list of all runners in the GitLab instance (specific and shared).List<Runner>
RunnersApi. getAllRunners(Runner.RunnerStatus scope, Integer page, Integer perPage)
Get a list of all runners in the GitLab instance (specific and shared).Stream<Runner>
RunnersApi. getAllRunnersStream(Runner.RunnerStatus scope)
Get a Stream of all runners in the GitLab instance (specific and shared).List<Runner>
RunnersApi. getRunners(Runner.RunnerStatus scope)
Get a list of all available runners available to the user with pagination support.Pager<Runner>
RunnersApi. getRunners(Runner.RunnerStatus scope, int itemsPerPage)
Get a list of specific runners available to the user.List<Runner>
RunnersApi. getRunners(Runner.RunnerStatus scope, Integer page, Integer perPage)
Get a list of specific runners available to the user.Stream<Runner>
RunnersApi. getRunnersStream(Runner.RunnerStatus scope)
Get a Stream of all available runners available to the user with pagination support. -
Uses of Runner.RunnerStatus in org.gitlab4j.api.models
Methods in org.gitlab4j.api.models that return Runner.RunnerStatus Modifier and Type Method Description static Runner.RunnerStatus
Runner.RunnerStatus. forValue(String value)
Runner.RunnerStatus
Runner. getStatus()
static Runner.RunnerStatus
Runner.RunnerStatus. valueOf(String name)
Returns the enum constant of this type with the specified name.static Runner.RunnerStatus[]
Runner.RunnerStatus. 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 Runner.RunnerStatus Modifier and Type Method Description void
Runner. setStatus(Runner.RunnerStatus status)
Runner
Runner. withStatus(Runner.RunnerStatus status)
-