com.esri.core.geometry.ogc.OGCGeometryCollection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esri-geometry-api Show documentation
Show all versions of esri-geometry-api Show documentation
The Esri Geometry API for Java enables developers to write custom applications for analysis of spatial data.
package com.esri.core.geometry.ogc;
public abstract class OGCGeometryCollection extends OGCGeometry {
/**
* Returns the number of geometries in this GeometryCollection.
*/
public abstract int numGeometries();
/**
* Returns the Nth geometry in this GeometryCollection.
* @param n The 0 based index of the geometry.
*/
public abstract OGCGeometry geometryN(int n);
}