org.openlr.locationreference.PolygonLocationReference Maven / Gradle / Ivy
package org.openlr.locationreference;
import org.locationtech.jts.geom.Coordinate;
import java.util.List;
/**
* A polygon location reference.
*/
public interface PolygonLocationReference extends AreaLocationReference {
/**
* @return the sequence of coordinates that form the shell of the polygon
*/
List getCoordinates();
}