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

org.hibernate.type.CalendarTimeType Maven / Gradle / Ivy

There is a newer version: 5.6.15.Final
Show newest version
/*
 * 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 .
 */
package org.hibernate.type;

import java.util.Calendar;

import org.hibernate.type.descriptor.java.CalendarTimeTypeDescriptor;
import org.hibernate.type.descriptor.sql.TimeTypeDescriptor;

/**
 * A type mapping {@link java.sql.Types#TIME TIME} and {@link Calendar}.
 * 

* For example, a Calendar attribute annotated with {@link jakarta.persistence.Temporal} and specifying * {@link jakarta.persistence.TemporalType#TIME} * * @author Steve Ebersole */ public class CalendarTimeType extends AbstractSingleColumnStandardBasicType { public static final CalendarTimeType INSTANCE = new CalendarTimeType(); public CalendarTimeType() { super( TimeTypeDescriptor.INSTANCE, CalendarTimeTypeDescriptor.INSTANCE ); } public String getName() { return "calendar_time"; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy