com.esri.core.geometry.ogc.OGCMultiSurface 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 OGCMultiSurface extends OGCGeometryCollection {
public double area() {
return getEsriGeometry().calculateArea2D();
}
public OGCPoint centroid() {
// TODO
throw new UnsupportedOperationException();
}
public OGCPoint pointOnSurface() {
// TODO
throw new UnsupportedOperationException();
}
}