org.hibernate.type.TimeType Java Examples

The following examples show how to use org.hibernate.type.TimeType. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AbstractTimeColumnMapper.java    From jadira with Apache License 2.0 4 votes vote down vote up
@Override
public final TimeType getHibernateType() {
	return TimeType.INSTANCE;
}
 
Example #2
Source File: Query.java    From lams with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Bind a positional Date-valued parameter using just the Time portion.
 *
 * @param position The parameter position
 * @param val The bind value
 *
 * @return {@code this}, for method chaining
 *
 * @deprecated (since 5.2) use {@link #setParameter(int, Object)} or {@link #setParameter(int, Object, Type)}
 * instead
 */
@Deprecated
@SuppressWarnings("unchecked")
default Query<R> setTime(int position, Date val) {
	setParameter( position, val, TimeType.INSTANCE );
	return this;
}
 
Example #3
Source File: Query.java    From lams with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Bind the time (val is truncated) of a given Date object to a named query parameter.
 *
 * @param name The name of the parameter
 * @param val The val object
 *
 * @return {@code this}, for method chaining
 *
 * @deprecated (since 5.2) use {@link #setParameter(int, Object)} or {@link #setParameter(int, Object, Type)}
 * instead
 */
@Deprecated
@SuppressWarnings("unchecked")
default Query<R> setTime(String name, Date val) {
	setParameter( name, val, TimeType.INSTANCE );
	return this;
}
 
Example #4
Source File: Query.java    From lams with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Bind a positional Date-valued parameter using just the Time portion.
 *
 * @param position The parameter position
 * @param val The bind value
 *
 * @return {@code this}, for method chaining
 *
 * @deprecated (since 5.2) use {@link #setParameter(int, Object)} or {@link #setParameter(int, Object, Type)}
 * instead
 */
@Deprecated
@SuppressWarnings("unchecked")
default Query<R> setTime(int position, Date val) {
	setParameter( position, val, TimeType.INSTANCE );
	return this;
}
 
Example #5
Source File: Query.java    From lams with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Bind the time (val is truncated) of a given Date object to a named query parameter.
 *
 * @param name The name of the parameter
 * @param val The val object
 *
 * @return {@code this}, for method chaining
 *
 * @deprecated (since 5.2) use {@link #setParameter(String, Object)} or {@link #setParameter(String, Object, Type)}
 * instead
 */
@Deprecated
@SuppressWarnings("unchecked")
default Query<R> setTime(String name, Date val) {
	setParameter( name, val, TimeType.INSTANCE );
	return this;
}