|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Parameter | |
---|---|
javax.persistence | |
javax.persistence.criteria |
Uses of Parameter in javax.persistence |
---|
Methods in javax.persistence that return Parameter | ||
---|---|---|
Parameter<?> |
Query.getParameter(int position)
Get the parameter object corresponding to the declared positional parameter with the given position. |
|
|
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. |
|
|
Query.getParameter(String name,
Class<T> type)
Get the parameter object corresponding to the declared parameter of the given name and type. |
Methods in javax.persistence that return types with arguments of type Parameter | |
---|---|
Set<Parameter<?>> |
Query.getParameters()
Get the parameter objects corresponding to the declared parameters of the query. |
Methods in javax.persistence with parameters of type Parameter | ||
---|---|---|
|
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. |
|
|
TypedQuery.setParameter(Parameter<T> param,
T value)
Bind the value of a Parameter object. |
|
|
Query.setParameter(Parameter<T> param,
T value)
Bind the value of a Parameter object. |
Uses of Parameter in javax.persistence.criteria |
---|
Subinterfaces of Parameter in javax.persistence.criteria | |
---|---|
interface |
ParameterExpression<T>
Type of criteria query parameter expressions. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |