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

org.codegas.commons.jpa.converter.GeoPolygonStringConverter Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package org.codegas.commons.jpa.converter;

import javax.persistence.AttributeConverter;
import javax.persistence.Converter;

import org.codegas.commons.lang.spacial.GeoPolygon;

@Converter
public class GeoPolygonStringConverter implements AttributeConverter {

    @Override
    public String convertToDatabaseColumn(GeoPolygon attributeObject) {
        return attributeObject == null ? null : attributeObject.toString();
    }

    @Override
    public GeoPolygon convertToEntityAttribute(String dbData) {
        return GeoPolygon.fromString(dbData);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy