Java org.hibernate.query Query fields, constructors, methods, implement or subclass

Example usage for Java org.hibernate.query Query fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.hibernate.query Query.

The text is from its open source code.

Method

StringgetQueryString()
ListgetResultList()
RgetSingleResult()
Listlist()
ScrollableResultsscroll(ScrollMode scrollMode)
QuerysetCacheable(boolean cacheable)
QuerysetDate(int position, Date val)
Bind a positional Date-valued parameter using just the Date portion.
QuerysetDate(String name, Date val)
Bind the val (time is truncated) of a given Date object to a named query parameter.
QuerysetEntity(int position, Object val)
Bind an instance of a mapped persistent class to a JDBC-style query parameter.
QuerysetEntity(String name, Object val)
Bind an instance of a mapped persistent class to a named query parameter.
QuerysetFetchSize(int fetchSize)
QuerysetFirstResult(int startPosition)
QuerysetInteger(int position, int val)
Bind a positional int-valued parameter.
QuerysetInteger(String name, int val)
Bind a named int-valued parameter.
QuerysetLong(int position, long val)
Bind a positional long-valued parameter.
QuerysetLong(String name, long val)
Bind a named long-valued parameter.
QuerysetMaxResults(int maxResult)
QuerysetParameter(Parameter param, T value)
QuerysetParameter(String name, Object value)
QuerysetParameter(int position, Object value)
QuerysetParameter(QueryParameter parameter, T val)
QuerysetParameter(Parameter param, Instant value, TemporalType temporalType)
QuerysetParameter(Parameter param, LocalDateTime value, TemporalType temporalType)
QuerysetParameter(Parameter param, ZonedDateTime value, TemporalType temporalType)
QuerysetParameter(Parameter param, OffsetDateTime value, TemporalType temporalType)
QuerysetParameter(String name, Instant value, TemporalType temporalType)
QuerysetParameter(String name, LocalDateTime value, TemporalType temporalType)
QuerysetParameter(String name, ZonedDateTime value, TemporalType temporalType)
QuerysetParameter(String name, OffsetDateTime value, TemporalType temporalType)
QuerysetParameter(int position, Instant value, TemporalType temporalType)
QuerysetParameter(int position, LocalDateTime value, TemporalType temporalType)
QuerysetParameter(int position, ZonedDateTime value, TemporalType temporalType)
QuerysetParameter(int position, OffsetDateTime value, TemporalType temporalType)
QuerysetParameter(Parameter param, Calendar value, TemporalType temporalType)
QuerysetParameter(Parameter param, Date value, TemporalType temporalType)
QuerysetParameter(String name, Object val, Type type)
QuerysetParameter(String name, Calendar value, TemporalType temporalType)
QuerysetParameter(String name, Date value, TemporalType temporalType)
QuerysetParameter(int position, Calendar value, TemporalType temporalType)
QuerysetParameter(int position, Date value, TemporalType temporalType)
QuerysetParameter(int position, P val, TemporalType temporalType)
QuerysetParameter(QueryParameter

parameter, P val, Type type)

QuerysetParameter(int position, Object val, Type type)
QuerysetParameter(QueryParameter

parameter, P val, TemporalType temporalType)

QuerysetParameter(String name, P val, TemporalType temporalType)
QuerysetParameterList(QueryParameter

parameter, Collection

values)

QuerysetParameterList(String name, Collection values)
QuerysetParameterList(String name, Object[] values)
QuerysetProperties(Object bean)
QuerysetProperties(Map bean)
QuerysetResultTransformer(ResultTransformer transformer)
Set a strategy for handling the query results.
QuerysetString(int position, String val)
Bind a positional String-valued parameter.
QuerysetString(String name, String val)
Bind a named String-valued parameter.
RuniqueResult()