Package org.geotools.process.classify
Interface ClassificationStats
- All Known Implementing Classes:
CoverageClassStats.Results
,FeatureClassStats.Results
public interface ClassificationStats
A classification of data into classes, with a count and statistics for each class.
-
Method Summary
Modifier and TypeMethodDescriptioncount
(int i) The count of values for the speciifed class.Set<Statistics.StatsType>
getStats()
The statistics maintained for each class.Range
range
(int i) The value range for the specified class.int
size()
Number of classes.value
(int i, Statistics.StatsType stat) The stat value for the specified class and statistic type.
-
Method Details
-
size
int size()Number of classes. -
getStats
Set<Statistics.StatsType> getStats()The statistics maintained for each class. -
range
Range range(int i) The value range for the specified class. -
value
The stat value for the specified class and statistic type. -
count
The count of values for the speciifed class.
-