Package | Description |
---|---|
javax.jdo |
This package contains the JDO specification interfaces and classes.
|
Modifier and Type | Method | Description |
---|---|---|
Query |
PersistenceManager.newNamedQuery(java.lang.Class cls,
java.lang.String queryName) |
Create a new
Query with the given candidate class
from a named query. |
Query |
PersistenceManager.newQuery() |
Create a new
Query with no elements. |
Query |
PersistenceManager.newQuery(java.lang.Class cls) |
Create a new
Query specifying the Class of the
candidate instances. |
Query |
PersistenceManager.newQuery(java.lang.Class cls,
java.lang.String filter) |
Create a new
Query with the Class of the
candidate instances and filter. |
Query |
PersistenceManager.newQuery(java.lang.Class cls,
java.util.Collection cln) |
Create a new
Query with the candidate Class
and Collection . |
Query |
PersistenceManager.newQuery(java.lang.Class cls,
java.util.Collection cln,
java.lang.String filter) |
Create a new
Query with the Class of the
candidate instances,
candidate Collection , and filter. |
Query |
PersistenceManager.newQuery(java.lang.Object compiled) |
Create a new
Query using elements from another
Query . |
Query |
PersistenceManager.newQuery(java.lang.String query) |
Create a Construct a new query instance using the specified String
as the single-string representation of the query.
|
Query |
PersistenceManager.newQuery(java.lang.String language,
java.lang.Object query) |
Create a new
Query using the specified language. |
Query |
PersistenceManager.newQuery(Extent cln) |
Create a new
Query with the Class of the
candidate instances and candidate Extent . |
Query |
PersistenceManager.newQuery(Extent cln,
java.lang.String filter) |
Create a new
Query with the
candidate Extent and filter; the class
is taken from the Extent . |
Modifier and Type | Method | Description |
---|---|---|
void |
Query.addSubquery(Query sub,
java.lang.String variableDeclaration,
java.lang.String candidateCollectionExpression) |
Add a subquery to this query.
|
void |
Query.addSubquery(Query sub,
java.lang.String variableDeclaration,
java.lang.String candidateCollectionExpression,
java.lang.String parameter) |
Add a subquery to this query.
|
void |
Query.addSubquery(Query sub,
java.lang.String variableDeclaration,
java.lang.String candidateCollectionExpression,
java.lang.String... parameters) |
Add a subquery to this query.
|
void |
Query.addSubquery(Query sub,
java.lang.String variableDeclaration,
java.lang.String candidateCollectionExpression,
java.util.Map parameters) |
Add a subquery to this query.
|