Package | Description |
---|---|
javax.persistence | |
javax.persistence.criteria | |
org.hibernate.ejb | |
org.hibernate.ejb.criteria.expression | |
org.hibernate.search.jpa.impl |
Modifier and Type | Method and Description |
---|---|
Parameter<?> |
Query.getParameter(int position)
Get the parameter object corresponding to the declared
positional parameter with the given position.
|
<T> Parameter<T> |
Query.getParameter(int position,
Class<T> type)
Get the parameter object corresponding to the declared
positional parameter with the given position and type.
|
Parameter<?> |
Query.getParameter(String name)
Get the parameter object corresponding to the declared
parameter of the given name.
|
<T> Parameter<T> |
Query.getParameter(String name,
Class<T> type)
Get the parameter object corresponding to the declared
parameter of the given name and type.
|
Modifier and Type | Method and Description |
---|---|
Set<Parameter<?>> |
Query.getParameters()
Get the parameter objects corresponding to the declared
parameters of the query.
|
Modifier and Type | Method and Description |
---|---|
<T> T |
Query.getParameterValue(Parameter<T> param)
Return the value bound to the parameter.
|
boolean |
Query.isBound(Parameter<?> param)
Return a boolean indicating whether a value has been bound
to the parameter.
|
TypedQuery<X> |
TypedQuery.setParameter(Parameter<Calendar> param,
Calendar value,
TemporalType temporalType)
Bind an instance of
java.util.Calendar to a Parameter object. |
Query |
Query.setParameter(Parameter<Calendar> param,
Calendar value,
TemporalType temporalType)
Bind an instance of
java.util.Calendar to a Parameter object. |
TypedQuery<X> |
TypedQuery.setParameter(Parameter<Date> param,
Date value,
TemporalType temporalType)
Bind an instance of
java.util.Date to a Parameter object. |
Query |
Query.setParameter(Parameter<Date> param,
Date value,
TemporalType temporalType)
Bind an instance of
java.util.Date to a Parameter object. |
<T> TypedQuery<X> |
TypedQuery.setParameter(Parameter<T> param,
T value)
Bind the value of a
Parameter object. |
<T> Query |
Query.setParameter(Parameter<T> param,
T value)
Bind the value of a
Parameter object. |
Modifier and Type | Interface and Description |
---|---|
interface |
ParameterExpression<T>
Type of criteria query parameter expressions.
|
Modifier and Type | Method and Description |
---|---|
Parameter<?> |
QueryImpl.getParameter(int position)
Get the parameter object corresponding to the declared
positional parameter with the given position.
|
<T> Parameter<T> |
QueryImpl.getParameter(int position,
Class<T> type)
Get the parameter object corresponding to the declared
positional parameter with the given position and type.
|
Parameter<?> |
QueryImpl.getParameter(String name)
Get the parameter object corresponding to the declared
parameter of the given name.
|
<T> Parameter<T> |
QueryImpl.getParameter(String name,
Class<T> type)
Get the parameter object corresponding to the declared
parameter of the given name and type.
|
Modifier and Type | Method and Description |
---|---|
Set<Parameter<?>> |
QueryImpl.getParameters()
Get the parameter objects corresponding to the declared
parameters of the query.
|
Modifier and Type | Method and Description |
---|---|
<T> T |
AbstractQueryImpl.getParameterValue(Parameter<T> param) |
boolean |
AbstractQueryImpl.isBound(Parameter<?> param) |
protected void |
AbstractQueryImpl.registerParameterBinding(Parameter parameter,
Object value) |
protected void |
AbstractQueryImpl.registerParameterBinding(Parameter parameter,
Object value,
TemporalType temporalType) |
TypedQuery<X> |
QueryImpl.setParameter(Parameter<Calendar> param,
Calendar value,
TemporalType temporalType) |
TypedQuery<X> |
QueryImpl.setParameter(Parameter<Date> param,
Date value,
TemporalType temporalType) |
<T> TypedQuery<X> |
QueryImpl.setParameter(Parameter<T> param,
T value) |
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).
|
Modifier and Type | Method and Description |
---|---|
Parameter<?> |
FullTextQueryImpl.getParameter(int position) |
<T> Parameter<T> |
FullTextQueryImpl.getParameter(int position,
Class<T> type) |
Parameter<?> |
FullTextQueryImpl.getParameter(String name) |
<T> Parameter<T> |
FullTextQueryImpl.getParameter(String name,
Class<T> type) |
Modifier and Type | Method and Description |
---|---|
Set<Parameter<?>> |
FullTextQueryImpl.getParameters() |
Modifier and Type | Method and Description |
---|---|
<T> T |
FullTextQueryImpl.getParameterValue(Parameter<T> param) |
boolean |
FullTextQueryImpl.isBound(Parameter<?> param) |
Query |
FullTextQueryImpl.setParameter(Parameter<Calendar> calendarParameter,
Calendar calendar,
TemporalType temporalType) |
Query |
FullTextQueryImpl.setParameter(Parameter<Date> dateParameter,
Date date,
TemporalType temporalType) |
<T> Query |
FullTextQueryImpl.setParameter(Parameter<T> tParameter,
T t) |
Copyright © 2018 JBoss by Red Hat. All rights reserved.