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

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

The newest version!
package io.ebean.postgis;

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

import java.sql.SQLException;

public class ScalarTypePgisPoint extends ScalarTypePgisBase {

  public ScalarTypePgisPoint() {
    super(ExtraDbTypes.POINT, Point.class);
  }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy