Uses of Interface
com.mysema.query.types.ParamExpression

Packages that use ParamExpression
com.mysema.query Contains basic Query elements 
com.mysema.query.hibernate.search   
com.mysema.query.jpa Query implementations for HQL and JPAQL 
com.mysema.query.jpa.hibernate JPQL for Hibernate 
com.mysema.query.jpa.impl HQL Support classes 
com.mysema.query.lucene   
com.mysema.query.mongodb   
com.mysema.query.sql SQL/JDBC support for Querydsl 
com.mysema.query.support Various support classes 
com.mysema.query.types Contains Querydsl grammar types 
com.mysema.query.types.expr Operations represent typed operations with operator and arguments 
 

Uses of ParamExpression in com.mysema.query
 

Methods in com.mysema.query that return types with arguments of type ParamExpression
 Map<ParamExpression<?>,Object> QueryMetadata.getParams()
          Get the parameters
 Map<ParamExpression<?>,Object> DefaultQueryMetadata.getParams()
           
 

Methods in com.mysema.query with parameters of type ParamExpression
<T> Q
SimpleQuery.set(ParamExpression<T> param, T value)
          Set the given parameter to the given value
<T> void
QueryMetadata.setParam(ParamExpression<T> param, T value)
           
<T> void
DefaultQueryMetadata.setParam(ParamExpression<T> param, T value)
           
 

Uses of ParamExpression in com.mysema.query.hibernate.search
 

Methods in com.mysema.query.hibernate.search with parameters of type ParamExpression
<P> SearchQuery<T>
SearchQuery.set(ParamExpression<P> param, P value)
           
 

Uses of ParamExpression in com.mysema.query.jpa
 

Methods in com.mysema.query.jpa with parameters of type ParamExpression
 Void JPQLSerializer.visit(ParamExpression<?> param, Void context)
           
 

Uses of ParamExpression in com.mysema.query.jpa.hibernate
 

Method parameters in com.mysema.query.jpa.hibernate with type arguments of type ParamExpression
static void HibernateUtil.setConstants(org.hibernate.Query query, Map<Object,String> constants, Map<ParamExpression<?>,Object> params)
           
 

Uses of ParamExpression in com.mysema.query.jpa.impl
 

Method parameters in com.mysema.query.jpa.impl with type arguments of type ParamExpression
static void JPAUtil.setConstants(javax.persistence.Query query, Map<Object,String> constants, Map<ParamExpression<?>,Object> params)
           
 

Uses of ParamExpression in com.mysema.query.lucene
 

Methods in com.mysema.query.lucene with parameters of type ParamExpression
<P> Q
AbstractLuceneQuery.set(ParamExpression<P> param, P value)
           
 

Uses of ParamExpression in com.mysema.query.mongodb
 

Methods in com.mysema.query.mongodb with parameters of type ParamExpression
<T> MongodbQuery<K>
MongodbQuery.set(ParamExpression<T> param, T value)
           
 Object MongodbSerializer.visit(ParamExpression<?> expr, Void context)
           
 

Uses of ParamExpression in com.mysema.query.sql
 

Methods in com.mysema.query.sql with parameters of type ParamExpression
 Void SQLSerializer.visit(ParamExpression<?> param, Void context)
           
 

Method parameters in com.mysema.query.sql with type arguments of type ParamExpression
protected  void AbstractSQLQuery.setParameters(PreparedStatement stmt, List<?> objects, List<Path<?>> constantPaths, Map<ParamExpression<?>,?> params)
           
 

Uses of ParamExpression in com.mysema.query.support
 

Methods in com.mysema.query.support with parameters of type ParamExpression
<P> T
QueryMixin.set(ParamExpression<P> param, P value)
           
<P> Q
QueryBase.set(ParamExpression<P> param, P value)
           
<P> SimpleQueryAdapter<T>
SimpleQueryAdapter.set(ParamExpression<P> param, P value)
          Deprecated.  
<P> SimpleProjectableAdapter<T>
SimpleProjectableAdapter.set(ParamExpression<P> param, P value)
           
 Expression<?> CollectionAnyVisitor.visit(ParamExpression<?> expr, Context context)
           
 Expression<?> ListAccessVisitor.visit(ParamExpression<?> expr, Context context)
           
 Void SerializerBase.visit(ParamExpression<?> param, Void context)
           
 

Uses of ParamExpression in com.mysema.query.types
 

Methods in com.mysema.query.types with parameters of type ParamExpression
 R Visitor.visit(ParamExpression<?> expr, C context)
           
 String ToStringVisitor.visit(ParamExpression<?> param, Templates templates)
           
 Expression<?> ExtractorVisitor.visit(ParamExpression<?> expr, Void context)
           
 Void ValidatingVisitor.visit(ParamExpression<?> expr, Void context)
           
 

Constructors in com.mysema.query.types with parameters of type ParamExpression
ParamNotSetException(ParamExpression<?> param)
           
 

Uses of ParamExpression in com.mysema.query.types.expr
 

Classes in com.mysema.query.types.expr that implement ParamExpression
 class Param<T>
          Param defines a parameter in a query with an optional name
 



Copyright © 2007-2012 Mysema Ltd. All Rights Reserved.