Uses of Class
org.geotools.util.Range

Packages that use Range
org.geotools.coverage Coverage implementation. 
org.geotools.renderer.style Styling to be applied on org.geotools.renderer.geom.Geometry objects at rendering time. 
org.geotools.util Contains utilities and addition to the collection framework. 
 

Uses of Range in org.geotools.coverage
 

Methods in org.geotools.coverage with parameters of type Range
static org.opengis.coverage.SampleDimensionType TypeMap.getSampleDimensionType(Range<?> range)
          Returns the smallest sample dimension type capable to hold the specified range of values.
 

Uses of Range in org.geotools.renderer.style
 

Methods in org.geotools.renderer.style with parameters of type Range
 Style2D SLDStyleFactory.createDynamicStyle(org.opengis.feature.simple.SimpleFeature f, Symbolizer symbolizer, Range scaleRange)
          Creates a rendered style
 Style2D SLDStyleFactory.createStyle(java.lang.Object drawMe, Symbolizer symbolizer, Range scaleRange)
           Creates a rendered style
 

Uses of Range in org.geotools.util
 

Subclasses of Range in org.geotools.util
 class DateRange
          A range of dates.
 class MeasurementRange<T extends Number & Comparable<? super T>>
          A range of numbers associated with a unit of measurement.
 class NumberRange<T extends Number & Comparable<? super T>>
          A range of numbers.
 

Methods in org.geotools.util that return Range
 Range<T> RangeSet.first()
          Returns the first (lowest) range currently in this sorted set.
 Range<?> Range.intersect(Range<?> range)
          Returns the intersection between this range and the provided range.
 Range<T> RangeSet.last()
          Returns the last (highest) range currently in this sorted set.
 Range<?>[] Range.subtract(Range<?> range)
          Returns the range of values that are in this range but not in the given range.
 Range<?> Range.union(Range<?> range)
          Returns the union of this range with the given range.
 

Methods in org.geotools.util that return types with arguments of type Range
 java.util.Comparator<Range<T>> RangeSet.comparator()
          Returns the comparator associated with this sorted set.
 java.util.SortedSet<Range<T>> RangeSet.headSet(Range<T> upper)
          Returns a view of the portion of this sorted set whose elements are strictly less than upper.
 java.util.Iterator<Range<T>> RangeSet.iterator()
          Returns an iterator over the elements in this set of ranges.
 java.util.SortedSet<Range<T>> RangeSet.subSet(Range<T> lower, Range<T> upper)
          Returns a view of the portion of this sorted set whose elements range from lower, inclusive, to upper, exclusive.
 java.util.SortedSet<Range<T>> RangeSet.tailSet(Range<T> lower)
          Returns a view of the portion of this sorted set whose elements are greater than or equal to lower.
 

Methods in org.geotools.util with parameters of type Range
 boolean RangeSet.add(Range<T> range)
          Add a range to this set.
 boolean Range.contains(Range<?> range)
          Returns true if this range contains fully the given range.
 boolean NumberRange.contains(Range<?> range)
          Returns true if the supplied range is fully contained within this range.
 java.util.SortedSet<Range<T>> RangeSet.headSet(Range<T> upper)
          Returns a view of the portion of this sorted set whose elements are strictly less than upper.
 MeasurementRange MeasurementRange.intersect(Range range)
          Returns the intersection of this range with the given range.
 Range<?> Range.intersect(Range<?> range)
          Returns the intersection between this range and the provided range.
 NumberRange<?> NumberRange.intersect(Range<?> range)
          Returns the intersection of this range with the given range.
 boolean Range.intersects(Range<?> range)
          Returns true if this range intersects the given range.
 boolean NumberRange.intersects(Range<?> range)
          Returns true if this range intersects the given range.
 java.util.SortedSet<Range<T>> RangeSet.subSet(Range<T> lower, Range<T> upper)
          Returns a view of the portion of this sorted set whose elements range from lower, inclusive, to upper, exclusive.
 java.util.SortedSet<Range<T>> RangeSet.subSet(Range<T> lower, Range<T> upper)
          Returns a view of the portion of this sorted set whose elements range from lower, inclusive, to upper, exclusive.
 MeasurementRange[] MeasurementRange.subtract(Range range)
          Returns the range of values that are in this range but not in the given range.
 Range<?>[] Range.subtract(Range<?> range)
          Returns the range of values that are in this range but not in the given range.
 NumberRange<?>[] NumberRange.subtract(Range<?> range)
          Returns the range of values that are in this range but not in the given range.
 java.util.SortedSet<Range<T>> RangeSet.tailSet(Range<T> lower)
          Returns a view of the portion of this sorted set whose elements are greater than or equal to lower.
 MeasurementRange MeasurementRange.union(Range range)
          Returns the union of this range with the given range.
 Range<?> Range.union(Range<?> range)
          Returns the union of this range with the given range.
 NumberRange<?> NumberRange.union(Range<?> range)
          Returns the union of this range with the given range.
static
<N extends java.lang.Number & java.lang.Comparable<? super N>>
NumberRange<N>
NumberRange.wrap(Range<N> range)
          Wraps the specified Range in a NumberRange object.
 

Constructors in org.geotools.util with parameters of type Range
MeasurementRange(Range<T> range, javax.measure.unit.Unit<?> units)
          Constructs a range with the same values than the specified range.
NumberRange(Range<T> range)
          Constructs a range with the same type and the same values than the specified range.
 



Copyright © 1996-2010 Geotools. All Rights Reserved.