Uses of Interface
org.apache.openjpa.kernel.Query
-
Packages that use Query Package Description org.apache.openjpa.datacache OpenJPA Data Cacheorg.apache.openjpa.kernel OpenJPA Runtime Kernelorg.apache.openjpa.meta OpenJPA Metadata -
-
Uses of Query in org.apache.openjpa.datacache
Methods in org.apache.openjpa.datacache with parameters of type Query Modifier and Type Method Description static QueryKey
QueryKey. newInstance(Query q)
Return a key for the given query, or null if it is not cacheable.static QueryKey
QueryKey. newInstance(Query q, java.lang.Object[] args)
Return a key for the given query, or null if it is not cacheable.static QueryKey
QueryKey. newInstance(Query q, java.util.Map<java.lang.Object,java.lang.Object> args)
Return a key for the given query, or null if it is not cacheable. -
Uses of Query in org.apache.openjpa.kernel
Classes in org.apache.openjpa.kernel that implement Query Modifier and Type Class Description class
DelegatingQuery
Delegating query that can also perform exception translation for use in facades.class
QueryImpl
Implementation of theQuery
interface.Methods in org.apache.openjpa.kernel that return Query Modifier and Type Method Description Query
DelegatingQuery. getDelegate()
Return the direct delegate.Query
DelegatingQuery. getInnermostDelegate()
Return the native delegate.Query
DelegatingQuery. getQuery()
Query
QueryContext. getQuery()
Return the query for this context.Query
QueryImpl. getQuery()
Query
Broker. newQuery(java.lang.String language, java.lang.Class cls, java.lang.Object query)
Create a new query from the given data, with the given candidate class and language.Query
Broker. newQuery(java.lang.String language, java.lang.Object query)
Create a new query in the given language.Query
BrokerImpl. newQuery(java.lang.String lang, java.lang.Class cls, java.lang.Object query)
Query
BrokerImpl. newQuery(java.lang.String lang, java.lang.Object query)
Query
DelegatingBroker. newQuery(java.lang.String language, java.lang.Class cls, java.lang.Object query)
Query
DelegatingBroker. newQuery(java.lang.String language, java.lang.Object query)
Methods in org.apache.openjpa.kernel with parameters of type Query Modifier and Type Method Description java.lang.Boolean
PreparedQueryCache. register(java.lang.String key, Query query, FetchConfiguration hints)
Register the given query for caching against the given key if it has not already been cached.void
PreparedQuery. setInto(Query q)
Fill in the post-compilation state of the given Query.Constructors in org.apache.openjpa.kernel with parameters of type Query Constructor Description DelegatingQuery(Query query)
Constructor; supply delegate.DelegatingQuery(Query query, RuntimeExceptionTranslator trans)
Constructor; supply delegate and exception translator. -
Uses of Query in org.apache.openjpa.meta
Methods in org.apache.openjpa.meta with parameters of type Query Modifier and Type Method Description void
QueryMetaData. setFrom(Query query)
Initialize this instance from the values held in the specifiedQuery
.void
QueryMetaData. setInto(Query query)
Set query template information into the given concrete query instance.
-