|
Oracle® Spatial Java API Reference 11g Release 2 (11.2) E11829-02 |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object
oracle.spatial.georaster.GeorHistogramEntry
public class GeorHistogramEntry
A GeoRaster grayscale entry, which contains two components: value and count. It is combined with class GeorHistogram to represent a GeoRaster histogram.
Two constructors are provided: one is the default constructor without parameters, and the other constructor allows you to specify cell value and count value.
Methods in this class are provided for retrieving and setting the cell value and count.
Constructor Summary | |
---|---|
GeorHistogramEntry() Constructs a GeorGrayscaleEntry object. |
|
GeorHistogramEntry(double value, long count) Constructs a GeorHistogramEntry object with the given cell value and gray value. |
Method Summary | |
---|---|
double |
getCellValue() Returns the cell value. |
long |
getCount() Returns the count value. |
void |
setCount(long count) Sets the count value. |
void |
setValue(double value) Sets the cell value. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public GeorHistogramEntry()
GeorGrayscaleEntry
object.public GeorHistogramEntry(double value, long count)
GeorHistogramEntry
object with the given cell value and gray value.
value
- cell valuecount
- count valueMethod Detail |
---|
public double getCellValue()
public void setValue(double value)
value
- cell valuepublic long getCount()
public void setCount(long count)
count
- count value
|
Oracle® Spatial Java API Reference 11g Release 2 (11.2) E11829-02 |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |