Package | Description |
---|---|
javax.persistence.criteria | |
org.hibernate.ejb.criteria | |
org.hibernate.ejb.criteria.expression |
Modifier and Type | Method and Description |
---|---|
<T> ParameterExpression<T> |
CriteriaBuilder.parameter(Class<T> paramClass)
Create a parameter expression.
|
<T> ParameterExpression<T> |
CriteriaBuilder.parameter(Class<T> paramClass,
String name)
Create a parameter expression with the given name.
|
Modifier and Type | Method and Description |
---|---|
Set<ParameterExpression<?>> |
CriteriaQuery.getParameters()
Return the parameters of the query.
|
Modifier and Type | Method and Description |
---|---|
<T> ParameterExpression<T> |
CriteriaBuilderImpl.parameter(Class<T> paramClass)
Create a parameter expression.
|
<T> ParameterExpression<T> |
CriteriaBuilderImpl.parameter(Class<T> paramClass,
String name)
Create a parameter expression with the given name.
|
Modifier and Type | Method and Description |
---|---|
Set<ParameterExpression<?>> |
QueryStructure.getParameters() |
Set<ParameterExpression<?>> |
CriteriaQueryImpl.getParameters()
Return the parameters of the query.
|
Modifier and Type | Method and Description |
---|---|
String |
CriteriaQueryCompiler.RenderingContext.registerExplicitParameter(ParameterExpression<?> criteriaQueryParameter)
Register parameters explicitly encountered in the criteria query.
|
void |
ParameterRegistry.registerParameter(ParameterExpression<?> parameter)
Registers the given parameter with this regitry.
|
Modifier and Type | Class and Description |
---|---|
class |
ParameterExpressionImpl<T>
Defines a parameter specification, or the information about a parameter (where it occurs, what is
its type, etc).
|
Copyright © 2018 JBoss by Red Hat. All rights reserved.