Package org.apache.openjpa.persistence
Class AbstractQuery<X>
java.lang.Object
org.apache.openjpa.persistence.AbstractQuery<X>
- All Implemented Interfaces:
jakarta.persistence.Query
,jakarta.persistence.TypedQuery<X>
,OpenJPAQuery<X>
,OpenJPAQuerySPI<X>
- Direct Known Subclasses:
QueryImpl
An abstract implementation of the Query interface.
-
Field Summary
Modifier and TypeFieldDescriptionprotected boolean
protected EntityManagerImpl
protected final QueryMetaData
protected boolean
Fields inherited from interface org.apache.openjpa.persistence.OpenJPAQuery
FLUSH_FALSE, FLUSH_TRUE, FLUSH_WITH_CONNECTION, HINT_RESULT_COUNT, OP_DELETE, OP_SELECT, OP_UPDATE
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected abstract void
void
declareParameter
(Object key, jakarta.persistence.Parameter<?> param) Declares the given parameter for this query.Set<?>
Gets the parameter keys bound with this query.Set<?>
Gets the declared parameter keys in the given query.<T> Set<T>
getDeclaredParameterKeys
(Class<T> keyType) Gets the parameter instances declared in this query.Gets the value of all the named parameters.jakarta.persistence.Parameter<?>
getParameter
(int pos) Get the positional parameter with the given position.<T> jakarta.persistence.Parameter<T>
getParameter
(int pos, Class<T> type) Get the positional parameter with the given position and type.jakarta.persistence.Parameter<?>
getParameter
(String name) Get the parameter object corresponding to the declared parameter of the given name.<T> jakarta.persistence.Parameter<T>
getParameter
(String name, Class<T> type) Get the parameter of the given name and type.Set<jakarta.persistence.Parameter<?>>
Gets the parameters declared in this query.getParameterValue
(int pos) Return the value bound to the parameter.<T> T
getParameterValue
(jakarta.persistence.Parameter<T> p) Return the value bound to the parameter.getParameterValue
(String name) Return the value bound to the parameter.protected abstract OrderedMap<Object,
Class<?>> Object[]
Gets the array of positional parameter values.boolean
Gets whether the type of user-supplied bind parameter value and the type of target persistent property they bind to are checked with strong or weak constraint.boolean
Affirms if declared parameters use position identifier.boolean
isBound
(jakarta.persistence.Parameter<?> param) Affirms if the given parameter is bound to a value for this query.boolean
isNative()
boolean
protected abstract void
lock()
setParameter
(int pos, Object value) Binds the parameter identified by the given position to the given value.setParameter
(int position, Calendar value, jakarta.persistence.TemporalType t) Sets the value of the given positional parameter after conversion of the given value to the given Temporal Type.setParameter
(int position, Date value, jakarta.persistence.TemporalType type) Sets the value of the given named parameter after conversion of the given value to the given Temporal Type.jakarta.persistence.TypedQuery<X>
setParameter
(jakarta.persistence.Parameter<Calendar> p, Calendar cal, jakarta.persistence.TemporalType type) setParameter
(jakarta.persistence.Parameter<Date> p, Date date, jakarta.persistence.TemporalType type) <T> OpenJPAQuery<X>
setParameter
(jakarta.persistence.Parameter<T> p, T arg1) setParameter
(String name, Object value) Sets the parameter of the given name to the given value.setParameter
(String name, Calendar value, jakarta.persistence.TemporalType type) setParameter
(String name, Date value, jakarta.persistence.TemporalType type) setParameters
(Object... params) Binds the given values as positional parameters.setParameters
(Map params) Sets the values of the parameters from the given Map.void
Sets whether the type of user-supplied bind parameter value and the type of target persistent property they bind to are checked with strong or weak constraint.protected abstract void
unlock()
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.openjpa.persistence.OpenJPAQuery
closeAll, compile, getCandidateCollection, getDataStoreActions, getEntityManager, getFetchPlan, getFirstResult, getFlushMode, getIgnoreChanges, getLanguage, getMaxResults, getOperation, getQueryString, getResultClass, getSupportedHints, hasSubclasses, setCandidateCollection, setFirstResult, setFlushMode, setHint, setIgnoreChanges, setMaxResults, setResultClass, setSubclasses
Methods inherited from interface org.apache.openjpa.persistence.OpenJPAQuerySPI
addAggregateListener, addFilterListener, removeAggregateListener, removeFilterListener
Methods inherited from interface jakarta.persistence.Query
executeUpdate, getHints, getLockMode, unwrap
Methods inherited from interface jakarta.persistence.TypedQuery
getResultList, getResultStream, getSingleResult, setLockMode
-
Field Details
-
_relaxBindParameterTypeChecking
protected boolean _relaxBindParameterTypeChecking -
_convertPositionalParams
protected boolean _convertPositionalParams -
_qmd
-
_em
-
_boundParams
-
_declaredParams
-
-
Constructor Details
-
AbstractQuery
-
-
Method Details
-
isProcedure
public boolean isProcedure() -
isNative
public boolean isNative() -
assertOpen
protected abstract void assertOpen() -
lock
protected abstract void lock() -
unlock
protected abstract void unlock() -
getParamTypes
- Returns:
- a map of parameter name to type for this query.
-
setParameter
Binds the parameter identified by the given position to the given value. The parameter are bound to a value in the context of this query. The same parameter may be bound to a different value in the context of another query.
For non-native queries, the given position must be a valid position in the declared parameters.
As native queries may not be parsed and hence their declared parameters may not be known, setting an positional parameter has the side-effect of a positional parameter being declared.- Specified by:
setParameter
in interfaceOpenJPAQuery<X>
- Specified by:
setParameter
in interfacejakarta.persistence.Query
- Specified by:
setParameter
in interfacejakarta.persistence.TypedQuery<X>
- Parameters:
position
- positive, integer position of the parametervalue
- an assignment compatible value- Returns:
- the same query instance
- Throws:
IllegalArgumentException
- if position does not correspond to a positional parameter of the query or if the argument is of incorrect type
-
setParameter
public OpenJPAQuery<X> setParameter(int position, Calendar value, jakarta.persistence.TemporalType t) Sets the value of the given positional parameter after conversion of the given value to the given Temporal Type.- Specified by:
setParameter
in interfaceOpenJPAQuery<X>
- Specified by:
setParameter
in interfacejakarta.persistence.Query
- Specified by:
setParameter
in interfacejakarta.persistence.TypedQuery<X>
-
setParameter
public OpenJPAQuery<X> setParameter(int position, Date value, jakarta.persistence.TemporalType type) Sets the value of the given named parameter after conversion of the given value to the given Temporal Type.- Specified by:
setParameter
in interfaceOpenJPAQuery<X>
- Specified by:
setParameter
in interfacejakarta.persistence.Query
- Specified by:
setParameter
in interfacejakarta.persistence.TypedQuery<X>
-
hasPositionalParameters
public boolean hasPositionalParameters()Affirms if declared parameters use position identifier.- Specified by:
hasPositionalParameters
in interfaceOpenJPAQuery<X>
-
getPositionalParameters
Gets the array of positional parameter values. The n-th array element represents (n+1)-th positional parameter. If a parameter has been declared but not bound to a value then the value is null and hence is indistinguishable from the value being actually null. If the parameter indexing is not contiguous then the unspecified parameters are considered as null.- Specified by:
getPositionalParameters
in interfaceOpenJPAQuery<X>
-
setParameters
Binds the given values as positional parameters. The n-th array element value is set to a Parameter with (n+1)-th positional identifier.- Specified by:
setParameters
in interfaceOpenJPAQuery<X>
-
getNamedParameters
Gets the value of all the named parameters. If a parameter has been declared but not bound to a value then the value is null and hence is indistinguishable from the value being actually null.- Specified by:
getNamedParameters
in interfaceOpenJPAQuery<X>
-
setParameters
Sets the values of the parameters from the given Map. The keys of the given map designate the name of the declared parameter.- Specified by:
setParameters
in interfaceOpenJPAQuery<X>
-
getParameter
Get the parameter of the given name and type.- Specified by:
getParameter
in interfacejakarta.persistence.Query
- Throws:
IllegalArgumentException
- if the parameter of the specified name does not exist or is not assignable to the typeIllegalStateException
- if invoked on a native query
-
getParameter
Get the positional parameter with the given position and type.- Specified by:
getParameter
in interfacejakarta.persistence.Query
- Throws:
IllegalArgumentException
- if the parameter with the specified position does not exist or is not assignable to the typeIllegalStateException
- if invoked on a native query unless the same parameter position is bound already.
-
getParameterValue
public <T> T getParameterValue(jakarta.persistence.Parameter<T> p) Return the value bound to the parameter.- Specified by:
getParameterValue
in interfacejakarta.persistence.Query
- Parameters:
param
- parameter object- Returns:
- parameter value
- Throws:
IllegalStateException
- if the parameter has not been been boundIllegalArgumentException
- if the parameter does not belong to this query
-
getParameters
Gets the parameters declared in this query.- Specified by:
getParameters
in interfacejakarta.persistence.Query
-
setParameter
- Specified by:
setParameter
in interfacejakarta.persistence.Query
- Specified by:
setParameter
in interfacejakarta.persistence.TypedQuery<X>
-
setParameter
public OpenJPAQuery<X> setParameter(jakarta.persistence.Parameter<Date> p, Date date, jakarta.persistence.TemporalType type) - Specified by:
setParameter
in interfacejakarta.persistence.Query
- Specified by:
setParameter
in interfacejakarta.persistence.TypedQuery<X>
-
setParameter
public jakarta.persistence.TypedQuery<X> setParameter(jakarta.persistence.Parameter<Calendar> p, Calendar cal, jakarta.persistence.TemporalType type) - Specified by:
setParameter
in interfacejakarta.persistence.Query
- Specified by:
setParameter
in interfacejakarta.persistence.TypedQuery<X>
-
getParameter
Get the parameter object corresponding to the declared parameter of the given name. This method is not required to be supported for native queries.- Specified by:
getParameter
in interfacejakarta.persistence.Query
- Throws:
IllegalArgumentException
- if the parameter of the specified name does not existIllegalStateException
- if invoked on a native query
-
getParameter
public jakarta.persistence.Parameter<?> getParameter(int pos) Get the positional parameter with the given position. The parameter may just have been declared and not bound to a value.- Specified by:
getParameter
in interfacejakarta.persistence.Query
- Parameters:
position
- specified in the user query.- Returns:
- parameter object
- Throws:
IllegalArgumentException
- if the parameter with the given position does not exist
-
getParameterValue
Return the value bound to the parameter.- Specified by:
getParameterValue
in interfacejakarta.persistence.Query
- Parameters:
name
- name of the parameter- Returns:
- parameter value
- Throws:
IllegalStateException
- if this parameter has not been bound
-
getParameterValue
Return the value bound to the parameter.- Specified by:
getParameterValue
in interfacejakarta.persistence.Query
- Parameters:
pos
- position of the parameter- Returns:
- parameter value
- Throws:
IllegalStateException
- if this parameter has not been bound
-
getBoundParameterKeys
Gets the parameter keys bound with this query. Parameter key can be Integer, String or a ParameterExpression itself but all parameters keys of a particular query are of the same type. -
getDeclaredParameterKeys
Gets the declared parameter keys in the given query. This information is only available after the query has been parsed. As native language queries are not parsed, this information is not available for them.- Returns:
- set of parameter identifiers in a parsed query
-
getDeclaredParameterKeys
-
getDeclaredParameters
Gets the parameter instances declared in this query. All parameter keys are of the same type. It is not allowed to mix keys of different type such as named and positional keys. For string-based queries, the parser supplies the information about the declared parameters as a LinkedMap of expected parameter value type indexed by parameter identifier. For non string-based queries that a facade itself may construct (e.g. CriteriaQuery), the parameters must be declared by the caller. This receiver constructs concrete Parameter instances from the given parameter identifiers.- Returns:
- a Map where the key represents the original identifier of the parameter (can be a String, Integer or a ParameterExpression itself) and the value is the concrete Parameter instance either constructed as a result of this call or supplied by declaring the parameter explicitly via #declareParameter(Parameter).
-
declareParameter
Declares the given parameter for this query. Used by non-string based queries that are constructed by the facade itself rather than OpenJPA parsing the query to detect the declared parameters.- Parameters:
key
- this is the key to identify the parameter later in the context of this query. Valid key types are Integer, String or ParameterExpression itself.the
- parameter instance to be declared
-
isBound
public boolean isBound(jakarta.persistence.Parameter<?> param) Affirms if the given parameter is bound to a value for this query.- Specified by:
isBound
in interfacejakarta.persistence.Query
-
setParameter
public OpenJPAQuery<X> setParameter(String name, Calendar value, jakarta.persistence.TemporalType type) - Specified by:
setParameter
in interfaceOpenJPAQuery<X>
- Specified by:
setParameter
in interfacejakarta.persistence.Query
- Specified by:
setParameter
in interfacejakarta.persistence.TypedQuery<X>
-
setParameter
- Specified by:
setParameter
in interfaceOpenJPAQuery<X>
- Specified by:
setParameter
in interfacejakarta.persistence.Query
- Specified by:
setParameter
in interfacejakarta.persistence.TypedQuery<X>
-
setParameter
Sets the parameter of the given name to the given value.- Specified by:
setParameter
in interfaceOpenJPAQuery<X>
- Specified by:
setParameter
in interfacejakarta.persistence.Query
- Specified by:
setParameter
in interfacejakarta.persistence.TypedQuery<X>
-
getRelaxBindParameterTypeChecking
public boolean getRelaxBindParameterTypeChecking()Description copied from interface:OpenJPAQuery
Gets whether the type of user-supplied bind parameter value and the type of target persistent property they bind to are checked with strong or weak constraint.- Specified by:
getRelaxBindParameterTypeChecking
in interfaceOpenJPAQuery<X>
- Returns:
- the booelan state. False by default, i.e. the type of a bind parameter value is checked strongly against the target property type.
-
setRelaxBindParameterTypeChecking
Description copied from interface:OpenJPAQuery
Sets whether the type of user-supplied bind parameter value and the type of target persistent property they bind to are checked with strong or weak constraint.
The same can be set viahint
without puncturing standard JPA API.- Specified by:
setRelaxBindParameterTypeChecking
in interfaceOpenJPAQuery<X>
- Parameters:
value
- a String or Boolean value.- See Also:
-