Liferay 6.0-ee

Uses of Interface
com.liferay.portal.kernel.dao.orm.Query

Packages that use Query
com.liferay.portal.dao.orm.hibernate   
com.liferay.portal.dao.orm.jpa   
com.liferay.portal.kernel.dao.orm   
 

Uses of Query in com.liferay.portal.dao.orm.hibernate
 

Classes in com.liferay.portal.dao.orm.hibernate that implement Query
 class QueryImpl
           
 class SQLQueryImpl
           
 

Methods in com.liferay.portal.dao.orm.hibernate that return Query
 Query SessionImpl.createQuery(String queryString)
           
 Query SQLQueryImpl.setBoolean(int pos, boolean value)
           
 Query QueryImpl.setBoolean(int pos, boolean value)
           
 Query SQLQueryImpl.setCacheable(boolean cacheable)
           
 Query QueryImpl.setCacheable(boolean cacheable)
           
 Query SQLQueryImpl.setCacheMode(CacheMode cacheMode)
           
 Query QueryImpl.setCacheMode(CacheMode cacheMode)
           
 Query SQLQueryImpl.setCacheRegion(String cacheRegion)
           
 Query QueryImpl.setCacheRegion(String cacheRegion)
           
 Query SQLQueryImpl.setDouble(int pos, double value)
           
 Query QueryImpl.setDouble(int pos, double value)
           
 Query SQLQueryImpl.setFirstResult(int firstResult)
           
 Query QueryImpl.setFirstResult(int firstResult)
           
 Query SQLQueryImpl.setFloat(int pos, float value)
           
 Query QueryImpl.setFloat(int pos, float value)
           
 Query SQLQueryImpl.setInteger(int pos, int value)
           
 Query QueryImpl.setInteger(int pos, int value)
           
 Query SQLQueryImpl.setLong(int pos, long value)
           
 Query QueryImpl.setLong(int pos, long value)
           
 Query SQLQueryImpl.setMaxResults(int maxResults)
           
 Query QueryImpl.setMaxResults(int maxResults)
           
 Query SQLQueryImpl.setSerializable(int pos, Serializable value)
           
 Query QueryImpl.setSerializable(int pos, Serializable value)
           
 Query SQLQueryImpl.setShort(int pos, short value)
           
 Query QueryImpl.setShort(int pos, short value)
           
 Query SQLQueryImpl.setString(int pos, String value)
           
 Query QueryImpl.setString(int pos, String value)
           
 Query SQLQueryImpl.setTimestamp(int pos, Timestamp value)
           
 Query QueryImpl.setTimestamp(int pos, Timestamp value)
           
 

Uses of Query in com.liferay.portal.dao.orm.jpa
 

Methods in com.liferay.portal.dao.orm.jpa that return Query
 Query SessionImpl.createQuery(String queryString)
           
 Query QueryImpl.setBoolean(int pos, boolean value)
           
 Query QueryImpl.setCacheable(boolean cacheable)
           
 Query QueryImpl.setCacheMode(CacheMode cacheMode)
           
 Query QueryImpl.setCacheRegion(String cacheRegion)
           
 Query QueryImpl.setDouble(int pos, double value)
           
 Query QueryImpl.setFirstResult(int firstResult)
           
 Query QueryImpl.setFloat(int pos, float value)
           
 Query QueryImpl.setFlushMode(javax.persistence.FlushModeType flushModeType)
           
 Query QueryImpl.setInteger(int pos, int value)
           
 Query QueryImpl.setLong(int pos, long value)
           
 Query QueryImpl.setMaxResults(int maxResults)
           
 Query QueryImpl.setSerializable(int pos, Serializable value)
           
 Query QueryImpl.setShort(int pos, short value)
           
 Query QueryImpl.setString(int pos, String value)
           
 Query QueryImpl.setTimestamp(int pos, Timestamp value)
           
 

Uses of Query in com.liferay.portal.kernel.dao.orm
 

Subinterfaces of Query in com.liferay.portal.kernel.dao.orm
 interface SQLQuery
           
 

Methods in com.liferay.portal.kernel.dao.orm that return Query
 Query Session.createQuery(String queryString)
           
 Query ClassLoaderSession.createQuery(String queryString)
           
 Query Query.setBoolean(int pos, boolean value)
           
 Query Query.setCacheable(boolean cacheable)
           
 Query Query.setCacheMode(CacheMode cacheMode)
           
 Query Query.setCacheRegion(String cacheRegion)
           
 Query Query.setDouble(int pos, double value)
           
 Query Query.setFirstResult(int firstResult)
           
 Query Query.setFloat(int pos, float value)
           
 Query Query.setInteger(int pos, int value)
           
 Query Query.setLong(int pos, long value)
           
 Query Query.setMaxResults(int maxResults)
           
 Query Query.setSerializable(int pos, Serializable value)
           
 Query Query.setShort(int pos, short value)
           
 Query Query.setString(int pos, String value)
           
 Query Query.setTimestamp(int pos, Timestamp value)
           
 

Methods in com.liferay.portal.kernel.dao.orm with parameters of type Query
static QueryPos QueryPos.getInstance(Query query)
           
static Comparable<?>[] QueryUtil.getPrevAndNext(Query query, int count, OrderByComparator obc, Comparable<?> comparable)
           
static Iterator<?> QueryUtil.iterate(Query query, Dialect dialect, int start, int end)
           
static Iterator<?> QueryUtil.iterate(Query query, Dialect dialect, int start, int end, boolean unmodifiable)
           
static List<?> QueryUtil.list(Query query, Dialect dialect, int start, int end)
           
static List<?> QueryUtil.list(Query query, Dialect dialect, int start, int end, boolean unmodifiable)
           
static List<?> QueryUtil.randomList(Query query, Dialect dialect, int total, int num)
           
static List<?> QueryUtil.randomList(Query query, Dialect dialect, int total, int num, boolean unmodifiable)
           
 


Liferay 6.0-ee