Uses of Class
hudson.model.Fingerprint.RangeSet
-
Packages that use Fingerprint.RangeSet Package Description hudson.model Core object model that are bound to URLs via stapler, rooted atJenkins
. -
-
Uses of Fingerprint.RangeSet in hudson.model
Fields in hudson.model declared as Fingerprint.RangeSet Modifier and Type Field Description Fingerprint.RangeSet
Fingerprint.RangeItem. ranges
Methods in hudson.model that return Fingerprint.RangeSet Modifier and Type Method Description static Fingerprint.RangeSet
Fingerprint.RangeSet. fromString(String list, boolean skipError)
Parses aFingerprint.RangeSet
from a string like "1-3,5,7-9"Fingerprint.RangeSet
AbstractBuild. getDownstreamRelationship(AbstractProject that)
Gets the dependency relationship from this build (as the source) and that project (as the sink.)Fingerprint.RangeSet
Fingerprint. getRangeSet(Job job)
Fingerprint.RangeSet
Fingerprint. getRangeSet(String jobFullName)
Gets the build range set for the given job name.Methods in hudson.model that return types with arguments of type Fingerprint.RangeSet Modifier and Type Method Description Map<AbstractProject,Fingerprint.RangeSet>
AbstractBuild. getDownstreamBuilds()
Gets the downstream builds of this build, which are the builds of the downstream projects that use artifacts of this build.SortedMap<Integer,Fingerprint.RangeSet>
AbstractProject. getRelationship(AbstractProject that)
Gets the dependency relationship map between this project (as the source) and that project (as the sink.)Hashtable<String,Fingerprint.RangeSet>
Fingerprint. getUsages()
Methods in hudson.model with parameters of type Fingerprint.RangeSet Modifier and Type Method Description void
Fingerprint.RangeSet. add(Fingerprint.RangeSet that)
List<RunT>
Job. getBuilds(Fingerprint.RangeSet rs)
Obtains all theRun
s whose build numbers matches the givenFingerprint.RangeSet
.boolean
Fingerprint.RangeSet. removeAll(Fingerprint.RangeSet that)
Updates this range set by removing all the values in the given range set.boolean
Fingerprint.RangeSet. retainAll(Fingerprint.RangeSet that)
Updates this range set by the intersection of this range and the given range.static String
Fingerprint.RangeSet.ConverterImpl. serialize(Fingerprint.RangeSet src)
Used to serialize the range sets (builds) of the fingerprint using commas and dashes.Constructors in hudson.model with parameters of type Fingerprint.RangeSet Constructor Description RangeItem(String name, Fingerprint.RangeSet ranges)
-