Package | Description |
---|---|
com.querydsl.core |
Basic Query elements
|
com.querydsl.core.support |
Various support classes
|
com.querydsl.core.types |
Expression types
|
com.querydsl.core.types.dsl |
DSL expression types
|
com.querydsl.hibernate.search |
Hibernate Search support
|
com.querydsl.jpa |
JPA support
|
com.querydsl.jpa.hibernate |
JPQL for Hibernate
|
com.querydsl.jpa.impl |
JPQL for JPA
|
com.querydsl.lucene3 |
Lucene 3 support
|
com.querydsl.lucene4 |
Lucene 4 support
|
com.querydsl.lucene5 |
Lucene 5 support
|
com.querydsl.mongodb |
MongoDB support
|
com.querydsl.sql |
SQL/JDBC support
|
com.querydsl.sql.dml |
DML operations support
|
Modifier and Type | Method and Description |
---|---|
Map<ParamExpression<?>,Object> |
QueryMetadata.getParams()
Get the parameter bindings
|
Map<ParamExpression<?>,Object> |
EmptyMetadata.getParams() |
Map<ParamExpression<?>,Object> |
DefaultQueryMetadata.getParams() |
Modifier and Type | Method and Description |
---|---|
<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)
Bind the value for the given parameter expression
|
<T> void |
EmptyMetadata.setParam(ParamExpression<T> param,
T value) |
<T> void |
DefaultQueryMetadata.setParam(ParamExpression<T> param,
T value) |
Modifier and Type | Method and Description |
---|---|
<P> T |
QueryMixin.set(ParamExpression<P> param,
P value) |
<P> Q |
QueryBase.set(ParamExpression<P> param,
P value)
Set the given parameter to the given value
|
Expression<?> |
ReplaceVisitor.visit(ParamExpression<?> expr,
C context) |
Expression<?> |
CollectionAnyVisitor.visit(ParamExpression<?> expr,
Context context) |
Void |
PathsExtractor.visit(ParamExpression<?> expr,
List<Path<?>> paths) |
Void |
SerializerBase.visit(ParamExpression<?> param,
Void context) |
Modifier and Type | Class and Description |
---|---|
class |
ParamExpressionImpl<T>
ParamExpressionImpl defines a parameter in a query with an optional name |
Modifier and Type | Method and Description |
---|---|
R |
Visitor.visit(ParamExpression<?> expr,
C context)
Visit a ParamExpression instance with the given context
|
Void |
ParamsVisitor.visit(ParamExpression<?> expr,
QueryMetadata context) |
Set<Expression<?>> |
ValidatingVisitor.visit(ParamExpression<?> expr,
Set<Expression<?>> known) |
String |
ToStringVisitor.visit(ParamExpression<?> param,
Templates templates) |
Path<?> |
PathExtractor.visit(ParamExpression<?> expr,
Void context) |
Integer |
HashCodeVisitor.visit(ParamExpression<?> expr,
Void context) |
Constructor and Description |
---|
ParamNotSetException(ParamExpression<?> param) |
Modifier and Type | Class and Description |
---|---|
class |
Param<T>
Param defines a parameter in a query with an optional name |
Modifier and Type | Method and Description |
---|---|
<P> Q |
AbstractSearchQuery.set(ParamExpression<P> param,
P value) |
Modifier and Type | Method and Description |
---|---|
Void |
JPQLSerializer.visit(ParamExpression<?> param,
Void context) |
Modifier and Type | Method and Description |
---|---|
static void |
HibernateUtil.setConstants(org.hibernate.Query query,
Map<Object,String> constants,
Map<ParamExpression<?>,Object> params) |
Modifier and Type | Method and Description |
---|---|
static void |
JPAUtil.setConstants(javax.persistence.Query query,
Map<Object,String> constants,
Map<ParamExpression<?>,Object> params) |
Modifier and Type | Method and Description |
---|---|
<P> Q |
AbstractLuceneQuery.set(ParamExpression<P> param,
P value) |
Modifier and Type | Method and Description |
---|---|
<P> Q |
AbstractLuceneQuery.set(ParamExpression<P> param,
P value) |
Modifier and Type | Method and Description |
---|---|
<P> Q |
AbstractLuceneQuery.set(ParamExpression<P> param,
P value) |
Modifier and Type | Method and Description |
---|---|
<T> Q |
AbstractMongodbQuery.set(ParamExpression<T> param,
T value) |
Object |
MongodbSerializer.visit(ParamExpression<?> expr,
Void context) |
Modifier and Type | Method and Description |
---|---|
Set<RelationalPath<?>> |
RelationalPathExtractor.visit(ParamExpression<?> expr,
Set<RelationalPath<?>> known) |
Void |
SQLSerializer.visit(ParamExpression<?> param,
Void context) |
Modifier and Type | Method and Description |
---|---|
protected void |
AbstractSQLQuery.setParameters(PreparedStatement stmt,
List<?> objects,
List<Path<?>> constantPaths,
Map<ParamExpression<?>,?> params) |
Modifier and Type | Method and Description |
---|---|
protected void |
AbstractSQLClause.setParameters(PreparedStatement stmt,
List<?> objects,
List<Path<?>> constantPaths,
Map<ParamExpression<?>,?> params)
Set the parameters to the given PreparedStatement
|
Copyright © 2007–2016 Querydsl. All rights reserved.