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(java.util.Map<java.lang.String,java.lang.Object> properties)
          Add a map of properties to the where clause of the query.
 TopiaQuery<E> TopiaQuery.add(java.lang.String where)
          Add a where element to the Query.
 TopiaQuery<E> TopiaQuery.add(java.lang.String paramName, java.util.Collection<java.lang.Object> values)
          Add an element to the query with a list of different possible values.
 TopiaQuery<E> TopiaQuery.add(java.lang.String paramName, java.util.Collection<java.lang.Object> values, boolean isNull)
          Add an element to the query with a list of different values.
 TopiaQuery<E> TopiaQuery.add(java.lang.String paramName, java.lang.Object paramValue)
          Add an element to the query.
 TopiaQuery<E> TopiaQuery.add(java.lang.String paramName, TopiaQuery.Op constraint, java.lang.Object paramValue)
          Add an element to the query.
 TopiaQuery<E> TopiaQuery.addDistinct()
          Add the distinct key word in the query.
 TopiaQuery<E> TopiaQuery.addFrom(java.lang.String str)
          Add an element to the from in the query.
 TopiaQuery<E> TopiaQuery.addGroup(java.lang.String group)
          Add an element to the group of the query.
 TopiaQuery<E> TopiaQuery.addLoad(java.lang.String... properties)
          Add a property to load when query is executed.
 TopiaQuery<E> TopiaQuery.addNotNull(java.lang.String paramName)
          Add an element to the query with the constraint Not null.
 TopiaQuery<E> TopiaQuery.addOrder(java.lang.String order)
          Add an element to the order in the query.
 TopiaQuery<E> TopiaQuery.addOrderDesc(java.lang.String order)
           
 TopiaQuery<E> TopiaQuery.addParam(java.lang.String id, java.lang.Object e)
          Add a HQL parameter to the Query.
static
<T extends TopiaEntity>
TopiaQuery<T>
TopiaQuery.createQuery(java.lang.Class<T> entityClass)
           
static
<T extends TopiaEntity>
TopiaQuery<T>
TopiaQuery.createQuery(java.lang.Class<T> entityClass, java.lang.String alias)
           
static
<T extends TopiaEntity>
TopiaQuery<T>
TopiaQuery.createQuery(TopiaDAO<T> dao)
           
static
<T extends TopiaEntity>
TopiaQuery<T>
TopiaQuery.createQuery(TopiaDAO<T> dao, java.lang.String alias)
           
 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(java.lang.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(java.lang.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(java.lang.String entityAlias)
           
 



Copyright © 2004-2010 CodeLutin. All Rights Reserved.