Uses of Class
org.geotools.util.Range
- 
Packages that use Range Package Description org.geotools.coverage Coverage implementation.org.geotools.coverage.io.util org.geotools.filter.visitor org.geotools.gce.imagemosaic org.geotools.process.raster Raster processing support for the GeoTools library.org.geotools.renderer.style Styling to be applied onorg.geotools.renderer.geom.Geometryobjects at rendering time.org.geotools.util Contains utilities and addition to the collection framework.
- 
- 
Uses of Range in org.geotools.coverageMethods in org.geotools.coverage with parameters of type Range Modifier and Type Method Description static SampleDimensionTypeTypeMap. getSampleDimensionType(Range<?> range)Returns the smallest sample dimension type capable to hold the specified range of values.
- 
Uses of Range in org.geotools.coverage.io.utilMethods in org.geotools.coverage.io.util with parameters of type Range Modifier and Type Method Description intNumberRangeComparator. compare(Range<? extends Number> firstRange, Range<? extends Number> secondRange)
- 
Uses of Range in org.geotools.filter.visitorMethods in org.geotools.filter.visitor with parameters of type Range Modifier and Type Method Description voidMultiRange. addRange(Range<T> range)voidMultiRange. removeRange(Range<T> range)Constructors in org.geotools.filter.visitor with parameters of type Range Constructor Description MultiRange(Range<T> range)Constructor parameters in org.geotools.filter.visitor with type arguments of type Range Constructor Description MultiRange(List<Range<T>> ranges)
- 
Uses of Range in org.geotools.gce.imagemosaicMethods in org.geotools.gce.imagemosaic that return Range Modifier and Type Method Description static Range<? extends Number>Utils. createRange(Object firstValue, Object secondValue)Create a Range of numbers from a couple of values.
- 
Uses of Range in org.geotools.process.rasterFields in org.geotools.process.raster with type parameters of type Range Modifier and Type Field Description static List<Range<Integer>>MarchingSquaresVectorizer. DEFAULT_RANGESMethod parameters in org.geotools.process.raster with type arguments of type Range Modifier and Type Method Description SimpleFeatureCollectionFootprintExtractionProcess. execute(GridCoverage2D coverage, List<Range<Integer>> exclusionRanges, Double thresholdArea, Boolean computeSimplifiedFootprint, Double simplifierFactor, Boolean removeCollinear, Boolean forceValid, MarchingSquaresVectorizer.ImageLoadingType imageLoadingType, ProgressListener progressListener)Executes the raster to vector process.Constructor parameters in org.geotools.process.raster with type arguments of type Range Constructor Description MarchingSquaresVectorizer(RenderedImage ri, RenderingHints hints, double thresholdArea, MarchingSquaresVectorizer.ImageLoadingType imageLoadingType, List<Range<Integer>> exclusionLuminanceRanges)Main Constructor usingRenderedImageas input.MarchingSquaresVectorizer(GridCoverage2D inGeodata, RenderingHints hints, double thresholdArea, double simplifierFactor, MarchingSquaresVectorizer.ImageLoadingType imageLoadingType, List<Range<Integer>> exclusionLuminanceRanges)Main Constructor usingGridCoverage2Das input.
- 
Uses of Range in org.geotools.renderer.styleMethods in org.geotools.renderer.style with parameters of type Range Modifier and Type Method Description Style2DSLDStyleFactory. createDynamicStyle(SimpleFeature f, Symbolizer symbolizer, Range scaleRange)Creates a rendered styleStyle2DSLDStyleFactory. createStyle(Object drawMe, Symbolizer symbolizer, Range scaleRange)Creates a rendered style
- 
Uses of Range in org.geotools.utilSubclasses of Range in org.geotools.util Modifier and Type Class Description classDateRangeA range of dates.classMeasurementRange<T extends Number & Comparable<? super T>>A range of numbers associated with a unit of measurement.classNumberRange<T extends Number & Comparable<? super T>>A range of numbers.Methods in org.geotools.util that return Range Modifier and Type Method Description 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 Modifier and Type Method Description Comparator<Range<T>>RangeSet. comparator()Returns the comparator associated with this sorted set.SortedSet<Range<T>>RangeSet. headSet(Range<T> upper)Returns a view of the portion of this sorted set whose elements are strictly less thanupper.Iterator<Range<T>>RangeSet. iterator()Returns an iterator over the elements in this set of ranges.SortedSet<Range<T>>RangeSet. subSet(Range<T> lower, Range<T> upper)Returns a view of the portion of this sorted set whose elements range fromlower, inclusive, toupper, exclusive.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 tolower.Methods in org.geotools.util with parameters of type Range Modifier and Type Method Description booleanRangeSet. add(Range<T> range)Add a range to this set.booleanNumberRange. contains(Range<?> range)Returnstrueif the supplied range is fully contained within this range.booleanRange. contains(Range<?> range)Returnstrueif this range contains fully the given range.SortedSet<Range<T>>RangeSet. headSet(Range<T> upper)Returns a view of the portion of this sorted set whose elements are strictly less thanupper.MeasurementRangeMeasurementRange. intersect(Range range)Returns the intersection of this range with the given range.NumberRange<?>NumberRange. 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.booleanNumberRange. intersects(Range<?> range)Returnstrueif this range intersects the given range.booleanRange. intersects(Range<?> range)Returnstrueif this range intersects the given range.SortedSet<Range<T>>RangeSet. subSet(Range<T> lower, Range<T> upper)Returns a view of the portion of this sorted set whose elements range fromlower, inclusive, toupper, exclusive.MeasurementRange[]MeasurementRange. 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.Range<?>[]Range. subtract(Range<?> range)Returns the range of values that are in this range but not in the given range.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 tolower.MeasurementRangeMeasurementRange. 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.Range<?>Range. union(Range<?> range)Returns the union of this range with the given range.static <N extends Number & Comparable<? super N>>
 NumberRange<N>NumberRange. wrap(Range<N> range)Wraps the specifiedRangein aNumberRangeobject.Constructors in org.geotools.util with parameters of type Range Constructor Description MeasurementRange(Range<T> range, 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.
 
-