Package | Description |
---|---|
hudson.model |
Core object model that are bound to URLs via stapler, rooted at Hudson.
|
hudson.util |
Other miscellaneous utility code
|
Modifier and Type | Field and Description |
---|---|
protected RunList<?> |
BuildTimelineWidget.builds |
Modifier and Type | Method and Description |
---|---|
RunList<RunT> |
Job.getBuilds()
Gets the read-only view of all the builds.
|
RunList |
Computer.getBuilds() |
RunList |
View.getBuilds() |
RunList |
User.getBuilds()
Gets the list of
Build s that include changes by this user,
by the timestamp order. |
RunList |
RunParameterDefinition.getBuilds() |
RunList<RunT> |
Job.getBuildsByTimestamp(long start,
long end)
Deprecated.
as of 1.372. Should just do
getBuilds().byTimestamp(s,e) to avoid code bloat in Job . |
RunList<RunT> |
Job.getNewBuilds()
Gets the read-only view of the recent builds.
|
Constructor and Description |
---|
BuildTimelineWidget(RunList<?> builds) |
Modifier and Type | Method and 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)
Returns elements that satisfy the given predicate.
|
static <R extends Run> |
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.
|
Copyright © 2015. All rights reserved.