Uses of Class
hudson.util.RunList
-
Packages that use RunList Package Description hudson.model Core object model that are bound to URLs via stapler, rooted atJenkins
.hudson.util Other miscellaneous utility code -
-
Uses of RunList in hudson.model
Fields in hudson.model declared as RunList Modifier and Type Field Description protected RunList<?>
BuildTimelineWidget. builds
Methods in hudson.model that return RunList Modifier and Type Method Description RunList
Computer. getBuilds()
RunList<RunT>
Job. getBuilds()
Gets the read-only view of all the builds.RunList
RunParameterDefinition. getBuilds()
RunList
User. getBuilds()
Searches for builds which include changes by this user or which were triggered by this user.RunList
View. getBuilds()
RunList<RunT>
Job. getBuildsByTimestamp(long start, long end)
Deprecated.as of 1.372.RunList<RunT>
Job. getNewBuilds()
Gets the read-only view of the recent builds.Methods in hudson.model with parameters of type RunList Modifier and Type Method Description static void
RSS. rss(org.kohsuke.stapler.StaplerRequest req, org.kohsuke.stapler.StaplerResponse rsp, String title, String url, RunList runList)
Sends the RSS feed to the client using a default feed adapter.static void
RSS. rss(org.kohsuke.stapler.StaplerRequest req, org.kohsuke.stapler.StaplerResponse rsp, String title, String url, RunList runList, FeedAdapter<Run> feedAdapter)
Sends the RSS feed to the client using a specific feed adapter.Constructors in hudson.model with parameters of type RunList Constructor Description BuildTimelineWidget(RunList<?> builds)
-
Uses of RunList in hudson.util
Methods in hudson.util that return RunList Modifier and Type Method Description RunList<R>
RunList. byTimestamp(long start, long end)
Filter the list by timestamp.RunList<R>
RunList. completedOnly()
Filter the list to completed builds.RunList<R>
RunList. failureOnly()
Filter the list to non-successful builds only.RunList<R>
RunList. filter(com.google.common.base.Predicate<R> predicate)
Deprecated.RunList<R>
RunList. filter(Predicate<R> predicate)
Returns elements that satisfy the given predicate.static <J extends Job<J,R>,R extends Run<J,R>>
RunList<R>RunList. fromJobs(Iterable<? extends J> jobs)
Creates a aRunList
combining all the runs of the supplied jobs.static <R extends Run>
RunList<R>RunList. fromRuns(Collection<? extends R> runs)
RunList<R>
RunList. limit(int n)
Return only the most recent builds.RunList<R>
RunList. newBuilds()
Reduce the size of the list by only leaving relatively new ones.RunList<R>
RunList. node(Node node)
Filter the list to builds on a single node only Warning: this method mutates the original list and then returns it.RunList<R>
RunList. overThresholdOnly(Result threshold)
Filter the list to builds above threshold.RunList<R>
RunList. regressionOnly()
Filter the list to regression builds only.
-