Uses of Interface
javax.jdo.Query

Packages that use Query
Package
Description
This package contains the JDO specification interfaces and classes.
  • Uses of Query in javax.jdo

    Methods in javax.jdo that return Query
    Modifier and Type
    Method
    Description
    PersistenceManager.newNamedQuery(Class cls, String queryName)
    Create a new Query with the given candidate class from a named query.
    PersistenceManager.newQuery()
    Create a new Query with no elements.
    PersistenceManager.newQuery(Class cls)
    Create a new Query specifying the Class of the candidate instances.
    PersistenceManager.newQuery(Class cls, String filter)
    Create a new Query with the Class of the candidate instances and filter.
    PersistenceManager.newQuery(Class cls, Collection cln)
    Create a new Query with the candidate Class and Collection.
    PersistenceManager.newQuery(Class cls, Collection cln, String filter)
    Create a new Query with the Class of the candidate instances, candidate Collection, and filter.
    PersistenceManager.newQuery(Object compiled)
    Create a new Query using elements from another Query.
    PersistenceManager.newQuery(String query)
    Create a Construct a new query instance using the specified String as the single-string representation of the query.
    PersistenceManager.newQuery(String language, Object query)
    Create a new Query using the specified language.
    PersistenceManager.newQuery(Extent cln)
    Create a new Query with the Class of the candidate instances and candidate Extent.
    PersistenceManager.newQuery(Extent cln, String filter)
    Create a new Query with the candidate Extent and filter; the class is taken from the Extent.
    Methods in javax.jdo with parameters of type Query
    Modifier and Type
    Method
    Description
    void
    Query.addSubquery(Query sub, String variableDeclaration, String candidateCollectionExpression)
    Add a subquery to this query.
    void
    Query.addSubquery(Query sub, String variableDeclaration, String candidateCollectionExpression, String parameter)
    Add a subquery to this query.
    void
    Query.addSubquery(Query sub, String variableDeclaration, String candidateCollectionExpression, String... parameters)
    Add a subquery to this query.
    void
    Query.addSubquery(Query sub, String variableDeclaration, String candidateCollectionExpression, Map parameters)
    Add a subquery to this query.