Uses of Class
metricsOverlay.model.metrics.Range

Packages that use Range
metricsOverlay Provides initialisation functionality and registrys. 
metricsOverlay.model.mappings Dictates mapping and interpolation classes in the model. 
metricsOverlay.model.metrics Provides metrics and range classes for the model. 
 

Uses of Range in metricsOverlay
 

Method parameters in metricsOverlay with type arguments of type Range
 void OverlayRegistry.addRange(java.lang.Class<? extends Range> rangeClass)
           
 

Uses of Range in metricsOverlay.model.mappings
 

Constructors in metricsOverlay.model.mappings with parameters of type Range
RangeInterpolator(Range curRange)
          Basic constructor.
 

Uses of Range in metricsOverlay.model.metrics
 

Subclasses of Range in metricsOverlay.model.metrics
 class CompositeIntegerRange
          This class provides the ability to use complex range data that is composed of different integer ranges.
 class CompositeRealRange
          This class provides the ability to use complex range data that is composed of different real ranges.
 class IntegerRange
          An ordinal range using integer numbers.
 class MappedRange
          This abstract class provides functionality to create ranges that consist of named mappings.
 class OrderedNominalRange
          An ordered nominal range using a map.
 class RealRange
          An interval range using real numbers.
 

Methods in metricsOverlay.model.metrics that return Range
 Range Metric.getRange()
           
 

Methods in metricsOverlay.model.metrics with parameters of type Range
 int Range.compareTo(Range o)
          Comparator on max and min values
 void Metric.setRange(Range range)
           
 

Constructors in metricsOverlay.model.metrics with parameters of type Range
ActualMetric(java.lang.String mname, Range mrange)
          Main constructor.
DerivedMetric(java.lang.String name, Range range, ActualMetric met)
          Main constructor.