| java.lang.Object | |||
| ↳ | com.carto.geometry.Geometry | ||
| ↳ | com.carto.geometry.MultiGeometry | ||
| ↳ | com.carto.geometry.MultiPointGeometry | ||
A multipoint container.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|
MultiPointGeometry(PointGeometryVector geometries)
Constructs a MultiPointGeometry from the vector of points.
| |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| synchronized void | delete() | ||||||||||
| PointGeometry |
getGeometry(int index)
Returns the point geometry at the specified index.
| ||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.carto.geometry.MultiGeometry
| |||||||||||
From class
com.carto.geometry.Geometry
| |||||||||||
From class
java.lang.Object
| |||||||||||
Constructs a MultiPointGeometry from the vector of points.
| geometries | The vector of point geometries. |
|---|
Returns the point geometry at the specified index. Index must be between 0 and getGeometryCount (exclusive)
| index | The index of the point geometry. |
|---|
| IndexOutOfBoundsException | If the index is out of range. |
|---|