/* * Hibernate, Relational Persistence for Idiomatic Java * * License: GNU Lesser General Public License (LGPL), version 2.1 or later. * See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. */ package org.hibernate.type; import java.time.OffsetDateTime; import java.time.format.DateTimeFormatter; import java.util.Comparator; import java.util.Locale; import org.hibernate.dialect.Dialect; import org.hibernate.engine.spi.SharedSessionContractImplementor; import org.hibernate.type.descriptor.java.OffsetDateTimeJavaDescriptor; import org.hibernate.type.descriptor.sql.TimestampTypeDescriptor; /** * @author Steve Ebersole */ public class OffsetDateTimeType extends AbstractSingleColumnStandardBasicType<OffsetDateTime> implements VersionType<OffsetDateTime>, LiteralType<OffsetDateTime> { /** * Singleton access */ public static final OffsetDateTimeType INSTANCE = new OffsetDateTimeType(); public static final DateTimeFormatter FORMATTER = DateTimeFormatter.ofPattern( "yyyy-MM-dd HH:mm:ss.S xxxxx", Locale.ENGLISH ); public OffsetDateTimeType() { super( TimestampTypeDescriptor.INSTANCE, OffsetDateTimeJavaDescriptor.INSTANCE ); } @Override public String objectToSQLString(OffsetDateTime value, Dialect dialect) throws Exception { return "{ts '" + FORMATTER.format( value ) + "'}"; } @Override public OffsetDateTime seed(SharedSessionContractImplementor session) { return OffsetDateTime.now(); } @Override public OffsetDateTime next(OffsetDateTime current, SharedSessionContractImplementor session) { return OffsetDateTime.now(); } @Override @SuppressWarnings("unchecked") public Comparator<OffsetDateTime> getComparator() { return OffsetDateTime.timeLineOrder(); } @Override public String getName() { return OffsetDateTime.class.getSimpleName(); } @Override protected boolean registerUnderJavaType() { return true; } }