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 TopiaQuery.add(Map<String,Object> properties)
          Add a map of properties to the where clause of the query.
 TopiaQuery TopiaQuery.add(String where)
          Add a where element to the Query.
 TopiaQuery TopiaQuery.add(String paramName, Collection<Object> values, boolean isNull)
          Deprecated. use add(String, Object...) with a null or not
 TopiaQuery TopiaQuery.add(String paramName, Object... paramValue)
          Add an element to the query.
 TopiaQuery TopiaQuery.add(String paramName, TopiaQuery.Op constraint, Object paramValue)
          Add an element to the query.
 TopiaQuery TopiaQuery.addDistinct()
          Add the distinct key word in the query.
 TopiaQuery TopiaQuery.addFrom(Class<? extends TopiaEntity> entityClass)
          Add an other entity type to the from in the query.
 TopiaQuery TopiaQuery.addFrom(Class<? extends TopiaEntity> entityClass, String alias)
          Add an other entity type to the from in the query with an alias.
 TopiaQuery TopiaQuery.addFrom(String str)
          Add an element to the from in the query.
 TopiaQuery TopiaQuery.addGroup(String... group)
          Add an element to the group of the query.
 TopiaQuery TopiaQuery.addLoad(String... properties)
          Add a property to load when query is executed.
 TopiaQuery TopiaQuery.addNotNull(String paramName)
          Add an element to the query with the constraint Not null.
 TopiaQuery TopiaQuery.addNullOr(String paramName, TopiaQuery.Op constraint, Object paramValue)
          Add an element to the query.
 TopiaQuery TopiaQuery.addOrder(String... order)
          Add an element to the order in the query.
 TopiaQuery TopiaQuery.addOrderDesc(String order)
           
 TopiaQuery TopiaQuery.addParam(String id, Object paramValue)
          Add a HQL parameter to the Query.
 TopiaQuery TopiaQuery.addParams(List<Object> params)
          Add muliple paramaters to the Query.
 TopiaQuery TopiaQuery.addSelect(String... select)
          Add an element to the select in the query.
static
<T extends TopiaEntity>
TopiaQuery
TopiaQuery.createQuery(Class<T> entityClass)
          Deprecated. use constructor instead : TopiaQuery(TopiaDAO)
static
<T extends TopiaEntity>
TopiaQuery
TopiaQuery.createQuery(Class<T> entityClass, String alias)
          Deprecated. use constructor instead : TopiaQuery(Class, String)
static
<T extends TopiaEntity>
TopiaQuery
TopiaQuery.createQuery(TopiaDAO<T> dao)
          Deprecated. use constructor instead : TopiaQuery(TopiaDAO)
static
<T extends TopiaEntity>
TopiaQuery
TopiaQuery.createQuery(TopiaDAO<T> dao, String alias)
          Deprecated. use constructor instead : java.lang.Class)
 TopiaQuery TopiaQuery.resetLimit()
          Remove limits previously set
 TopiaQuery TopiaQuery.setFrom(Class<? extends TopiaEntity> mainEntityClass)
          Set the mainEntity in the from part of the query.
 TopiaQuery TopiaQuery.setFrom(Class<? extends TopiaEntity> mainEntityClass, String alias)
          Set the mainEntity in the from part of the query and use an alias for this mainEntity.
 TopiaQuery TopiaQuery.setLimit(int start, int end)
          Limit the result of the query with startIndex and endIndex.
 TopiaQuery TopiaQuery.setMaxResults(int max)
          Set the max results wanted for the query.
 TopiaQuery 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 TopiaDAOImpl.createQuery()
           
 TopiaQuery TopiaDAO.createQuery()
          Crée une requete basé sur l'entité lié au DAO.
 TopiaQuery TopiaDAOImpl.createQuery(String entityAlias)
           
 TopiaQuery TopiaDAO.createQuery(String entityAlias)
          Crée une requête basé sur l'entité lié au DAO et lui assigne un alias valable dans la requête..
 

Methods in org.nuiton.topia.persistence with parameters of type TopiaQuery
 List<E> TopiaDAOImpl.findAllByQuery(TopiaQuery query)
           
 List<Entity> TopiaDAO.findAllByQuery(TopiaQuery query)
          Execute une requête basé sur l'entité du DAO.
 Map<String,E> TopiaDAOImpl.findAllMappedByQuery(TopiaQuery query)
           
 Map<String,Entity> TopiaDAO.findAllMappedByQuery(TopiaQuery query)
          Execute une requête basé sur l'entité du DAO.
<K> Map<K,E>
TopiaDAOImpl.findAllMappedByQuery(TopiaQuery query, String keyName, Class<K> keyClass)
           
<K> Map<K,Entity>
TopiaDAO.findAllMappedByQuery(TopiaQuery query, String keyName, Class<K> keyClass)
          Execute une requête basé sur l'entité du DAO.
 E TopiaDAOImpl.findByQuery(TopiaQuery query)
           
 Entity TopiaDAO.findByQuery(TopiaQuery query)
          Execute une requête basé sur l'entité du DAO.
 



Copyright © 2004-2010 CodeLutin. All Rights Reserved.