All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.ebean.postgis.ScalarTypePgisPolygon Maven / Gradle / Ivy

The newest version!
package io.ebean.postgis;

import io.ebean.config.dbplatform.ExtraDbTypes;
import org.postgis.Polygon;

import java.sql.SQLException;

public class ScalarTypePgisPolygon extends ScalarTypePgisBase {

  public ScalarTypePgisPolygon() {
    super(ExtraDbTypes.POLYGON, Polygon.class);
  }

  @Override
  public Polygon parse(String value) {
    try {
      return new Polygon(value);
    } catch (SQLException e) {
      throw new IllegalStateException(e);
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy