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

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

There is a newer version: 7.0.0.Alpha1
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.CalendarDateTypeDescriptor;
import org.hibernate.type.descriptor.sql.DateTypeDescriptor;

/**
 * A type mapping {@link java.sql.Types#DATE DATE} and {@link Calendar}
 *
 * @author Gavin King
 * @author Steve Ebersole
 */
public class CalendarDateType extends AbstractSingleColumnStandardBasicType {
	public static final CalendarDateType INSTANCE = new CalendarDateType();

	public CalendarDateType() {
		super( DateTypeDescriptor.INSTANCE, CalendarDateTypeDescriptor.INSTANCE );
	}

	public String getName() {
		return "calendar_date";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy