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

com.mantledillusion.metrics.trail.ZoneIdStringAttributeConverter Maven / Gradle / Ivy

There is a newer version: 2.2.2
Show newest version
package com.mantledillusion.metrics.trail;

import javax.persistence.AttributeConverter;
import java.time.ZoneId;

/**
 * JPA {@link AttributeConverter} to convert a {@link ZoneId} to {@link String} and vice versa.
 */
public class ZoneIdStringAttributeConverter implements AttributeConverter {

    @Override
    public String convertToDatabaseColumn(ZoneId attribute) {
        return attribute.getId();
    }

    @Override
    public ZoneId convertToEntityAttribute(String dbData) {
        return ZoneId.of(dbData);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy