Uses of Class
org.nuiton.topia.framework.TopiaQuery

Packages that use TopiaQuery
org.nuiton.topia.framework   
org.nuiton.topia.persistence   
 

Uses of TopiaQuery in org.nuiton.topia.framework
 

Methods in org.nuiton.topia.framework that return TopiaQuery
 TopiaQuery<E> TopiaQuery.add(Map<String,Object> properties)
          Add a map of properties to the where clause of the query.
 TopiaQuery<E> TopiaQuery.add(String where)
          Add a where element to the Query.
 TopiaQuery<E> TopiaQuery.add(String paramName, Collection<Object> values)
          Add an element to the query with a list of different possible values.
 TopiaQuery<E> TopiaQuery.add(String paramName, Collection<Object> values, boolean isNull)
          Add an element to the query with a list of different values.
 TopiaQuery<E> TopiaQuery.add(String paramName, Object paramValue)
          Add an element to the query.
 TopiaQuery<E> TopiaQuery.add(String paramName, TopiaQuery.Op constraint, Object paramValue)
          Add an element to the query.
 TopiaQuery<E> TopiaQuery.addDistinct()
          Add the distinct key word in the query.
 TopiaQuery<E> TopiaQuery.addFrom(String str)
          Add an element to the from in the query.
 TopiaQuery<E> TopiaQuery.addGroup(String group)
          Add an element to the group of the query.
 TopiaQuery<E> TopiaQuery.addLoad(String... properties)
          Add a property to load when query is executed.
 TopiaQuery<E> TopiaQuery.addNotNull(String paramName)
          Add an element to the query with the constraint Not null.
 TopiaQuery<E> TopiaQuery.addOrder(String order)
          Add an element to the order in the query.
 TopiaQuery<E> TopiaQuery.addOrderDesc(String order)
           
 TopiaQuery<E> TopiaQuery.addParam(String id, Object paramValue)
          Add a HQL parameter to the Query.
 TopiaQuery<E> TopiaQuery.addParams(List<Object> params)
          Add muliple paramaters to the Query.
 TopiaQuery<E> TopiaQuery.addSelect(String select)
          Add an element to the select in the query.
static
<T extends TopiaEntity>
TopiaQuery<T>
TopiaQuery.createQuery(Class<T> entityClass)
          Create a TopiaQuery with entityClass initialization.
static
<T extends TopiaEntity>
TopiaQuery<T>
TopiaQuery.createQuery(Class<T> entityClass, String alias)
          Create a TopiaQuery with entityClass initialization and its Alias.
static
<T extends TopiaEntity>
TopiaQuery<T>
TopiaQuery.createQuery(TopiaDAO<T> dao)
          Create a TopiaQuery from a DAO.
static
<T extends TopiaEntity>
TopiaQuery<T>
TopiaQuery.createQuery(TopiaDAO<T> dao, String alias)
          Create a TopiaQuery from a DAO with an Alias.
 TopiaQuery<E> TopiaQuery.resetLimit()
          Remove limits previously set
 TopiaQuery<E> TopiaQuery.setLimit(int start, int end)
          Limit the result of the query with startIndex and endIndex.
 TopiaQuery<E> TopiaQuery.setMaxResults(int max)
          Set the max results wanted for the query.
 TopiaQuery<E> TopiaQuery.setSelect(String select)
          Set the select in the query.
 

Uses of TopiaQuery in org.nuiton.topia.persistence
 

Methods in org.nuiton.topia.persistence that return TopiaQuery
 TopiaQuery<Entity> TopiaDAO.createQuery()
          Crée une requete basé sur l'entité lié au DAO.
 TopiaQuery<E> TopiaDAOImpl.createQuery()
           
 TopiaQuery<Entity> TopiaDAO.createQuery(String entityAlias)
          Crée une requete basé sur l'entité lié au DAO et lui assigne un alias valable dans la requête.
 TopiaQuery<E> TopiaDAOImpl.createQuery(String entityAlias)
           
 



Copyright © 2004-2010 CodeLutin. All Rights Reserved.