ObjectDB Database Search
1-50 of 58 resultsjakarta.persistence.criteria.Subquery Jakarta Persistence (JPA) Interface jakarta.persistence.criteria. Subquery Type Parameters ... , Selection , TupleElement The Subquery interface defines functionality that is specific to subqueries . A subquery has an expression as its selection item. Since: Jakarta Persistence (JPA) 2.0 Public | |
jakarta.persistence.criteria.CommonAbstractCriteria.subquery(Class) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CommonAbstractCriteria Subquery subquery ( Class type ) Create a subquery of the query. Parameters: type - the subquery result type Returns: subquery . Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.CommonAbstractCriteria.subquery(EntityType) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CommonAbstractCriteria Subquery subquery ( EntityType type ) Create a subquery of the query. Parameters: type - the subquery result type Returns: subquery . Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.Subquery.select(Expression) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria. Subquery Subquery select ( Expression expression ) Specify the item that is to be returned as the subquery result ... the item that is to be returned as the subquery result Returns: the modified subquery . Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.CriteriaBuilder.exists(Subquery) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CriteriaBuilder Predicate exists ( Subquery subquery ) Create a predicate testing the existence of a subquery result. Parameters: subquery - subquery whose result is to be tested Returns: exists predicate. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.CriteriaBuilder.all(Subquery) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CriteriaBuilder Expression all ( Subquery subquery ) Create an all expression over the subquery results. Parameters: subquery - subquery Returns: all expression. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.CriteriaBuilder.some(Subquery) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CriteriaBuilder Expression some ( Subquery subquery ) Create a some expression over the subquery results. This expression is equivalent to an any expression. Parameters: subquery - subquery Returns: some expression. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.CriteriaBuilder.any(Subquery) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CriteriaBuilder Expression any ( Subquery subquery ) Create an any expression over the subquery results. This expression is equivalent to a some expression. Parameters: subquery - subquery Returns: any expression. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.Subquery.where(Expression) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria. Subquery Subquery where ( Expression restriction ) Modify the subquery to restrict the result according to the specified ... compound boolean expression Returns: the modified subquery . Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.Subquery.where(Predicate...) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria. Subquery Subquery where ( Predicate... restrictions ) Modify the subquery to restrict the result according ... - zero or more restriction predicates Returns: the modified subquery . Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.Subquery.groupBy(Expression...) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria. Subquery Subquery groupBy (   ... over the subquery results. Replaces the previous specified grouping expressions, if any. If no grouping ... more grouping expressions Returns: the modified subquery . Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.Subquery.distinct(boolean) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria. Subquery Subquery distinct ... whether duplicate results must be eliminated from the subquery result or whether they must be retained Returns: the modified subquery .. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.Subquery.groupBy(List) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria. Subquery Subquery groupBy ( List grouping ) Specify the expressions that are used to form groups over the subquery ... more grouping expressions Returns: the modified subquery . Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.Subquery.having(Expression) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria. Subquery Subquery having ( Expression restriction ) Specify a restriction over the groups of the subquery . Replaces ... of the corresponding AbstractQuery method. Parameters: restriction - a simple or compound boolean expression Returns: the modified subquery . Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.Subquery.having(Predicate...) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria. Subquery Subquery having ( Predicate... restrictions ) Specify restrictions over the groups of the subquery according ... : restrictions - zero or more restriction predicates Returns: the modified subquery . Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.Subquery.getContainingQuery() Jakarta Persistence (JPA) Method in jakarta.persistence.criteria. Subquery CommonAbstractCriteria getContainingQuery() Return the query of which this is a subquery . This may be a CriteriaQuery, CriteriaUpdate, CriteriaDelete, or a Subquery . Returns: the enclosing query or subquery . Since: Jakarta Persistence (JPA) 2.1 | |
jakarta.persistence.criteria.Subquery.getCorrelatedJoins() Jakarta Persistence (JPA) Method in jakarta.persistence.criteria. Subquery Set getCorrelatedJoins() Return the correlated joins of the subquery . Returns empty set if the subquery has no correlated joins. Modifications to the set do not affect the query. Returns: the correlated joins of the subquery . Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.Subquery.getParent() Jakarta Persistence (JPA) Method in jakarta.persistence.criteria. Subquery AbstractQuery getParent() Return the query of which this is a subquery . This must be a CriteriaQuery or a Subquery . Returns: the enclosing query or subquery . Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.Subquery.correlate(Root) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria. Subquery Root correlate ( Root parentRoot ) Create a subquery root correlated to a root of the enclosing query. Parameters: parentRoot - a root of the containing query Returns: subquery root. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.Subquery.correlate(Join) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria. Subquery Join correlate ( Join parentJoin ) Create a subquery join object correlated to a join object of the enclosing query. Parameters: parentJoin - join object of the containing query Returns: subquery join. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.Subquery.correlate(CollectionJoin) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria. Subquery CollectionJoin correlate ( CollectionJoin parentCollection ) Create a subquery collection join object ... of the containing query Returns: subquery join. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.Subquery.correlate(SetJoin) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria. Subquery SetJoin correlate ( SetJoin parentSet ) Create a subquery set join object correlated to a set join object of the enclosing query. Parameters: parentSet - join object of the containing query Returns: subquery join. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.Subquery.correlate(ListJoin) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria. Subquery ListJoin correlate ( ListJoin parentList ) Create a subquery list join object correlated to a list join object of the enclosing query. Parameters: parentList - join object of the containing query Returns: subquery join. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.Subquery.correlate(MapJoin) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria. Subquery MapJoin correlate ( MapJoin parentMap ) Create a subquery map join object correlated to a map join object of the enclosing query. Parameters: parentMap - join object of the containing query Returns: subquery join. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.Subquery.where(List) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria. Subquery Subquery where ( List restrictions ) Modify the query to restrict the query result according to the conjunction of the specified restriction predicates. Replaces the previously added restriction(s), if any | |
jakarta.persistence.criteria.Subquery.having(List) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria. Subquery Subquery having ( List restrictions ) Specify restrictions over the groups of the query according the conjunction of the specified restriction predicates. Replaces the previously added having restriction(s | |
jakarta.persistence.criteria.Subquery.getSelection() Jakarta Persistence (JPA) Method in jakarta.persistence.criteria. Subquery Expression getSelection() Return the selection expression. Returns: the item to be returned in the subquery result. Since: Jakarta Persistence (JPA) 1.0 | |
JPA Criteria Queries for restricting query scope using parameters and subqueries across all query types. SELECT Queries ... query, a subquery cannot be executed directly; it serves as an expression within the parent query (Note: Subqueries are currently not supported by ObjectDB). Top-level queries and subqueries share | |
jakarta.persistence.criteria.CriteriaBuilder: absolute value. Since: Jakarta Persistence (JPA) 1.0 Expression all ( Subquery subquery ) Create an all expression over the subquery results. Parameters: subquery - subquery Returns: all expression ... any ( Subquery subquery ) Create an any expression over the subquery results. This expression | |
Subquery errorSubquery error | |
jakarta.persistence.criteria.AbstractQuery functionality that is common to both top-level queries and subqueries . It is not intended to be used ... . Since: Jakarta Persistence (JPA) 1.0 Class getResultType () Return the result type of the query or subquery . If a result type was specified as an argument to the createQuery or subquery method, that type | |
jakarta.persistence.criteria.CriteriaQuery or subquery . If a result type was specified as an argument to the createQuery or subquery method ... that are defined for the CriteriaQuery or Subquery itself, including any subquery roots defined as ... . Since: Jakarta Persistence (JPA) 1.0 Subquery subquery ( Class type ) Create a subquery of the query | |
jakarta.persistence.criteria.CommonAbstractCriteria and subqueries as well as to update and delete criteria operations. It is not intended to be used ... have been specified. Returns: where clause predicate. Since: Jakarta Persistence (JPA) 1.0 Subquery subquery ( Class type ) Create a subquery of the query. Parameters: type - the subquery result type Returns: subquery | |
jakarta.persistence.criteria.CriteriaUpdate update query. Since: Jakarta Persistence (JPA) 1.0 Subquery subquery ( Class type ) Create a subquery of the query. Inherited from CommonAbstractCriteria Parameters: type - the subquery result type Returns: subquery . Since: Jakarta Persistence (JPA) 1.0 Subquery subquery ( EntityType type ) Create | |
jakarta.persistence.criteria.CriteriaDelete () Return the query root. Returns: the query root. Since: Jakarta Persistence (JPA) 1.0 Subquery subquery ( Class type ) Create a subquery of the query. Inherited from CommonAbstractCriteria Parameters: type - the subquery result type Returns: subquery . Since: Jakarta Persistence (JPA) 1.0 Subquery | |
jakarta.persistence.criteria.PluralJoin from which the correlated From object has been obtained through correlation (use of Subquery ... object has been obtained as a result of correlation (use of a Subquery .correlate method). Inherited | |
jakarta.persistence.criteria.MapJoin which the correlated From object has been obtained through correlation (use of Subquery .correlate method ... of a Subquery .correlate method). Inherited from From Returns: boolean indicating whether the object | |
jakarta.persistence.criteria.Root which the correlated From object has been obtained through correlation (use of Subquery .correlate ... () Whether the From object has been obtained as a result of correlation (use of a Subquery .correlate | |
jakarta.persistence.criteria.SetJoin which the correlated From object has been obtained through correlation (use of Subquery .correlate ... (use of a Subquery .correlate method). Inherited from From Returns: boolean indicating | |
jakarta.persistence.criteria.CollectionJoin (use of Subquery .correlate method). Inherited from From Returns: the parent of the correlated From ... has been obtained as a result of correlation (use of a Subquery .correlate method). Inherited from | |
jakarta.persistence.criteria.ListJoin from which the correlated From object has been obtained through correlation (use of Subquery ... () Whether the From object has been obtained as a result of correlation (use of a Subquery .correlate method | |
jakarta.persistence.criteria.From through correlation (use of Subquery .correlate method). Returns: the parent of the correlated From ... of a Subquery .correlate method). Returns: boolean indicating whether the object has been obtained | |
jakarta.persistence.criteria.Join of Subquery .correlate method). Inherited from From Returns: the parent of the correlated From object ... as a result of correlation (use of a Subquery .correlate method). Inherited from From Returns: boolean | |
jakarta.persistence.criteria.AbstractQuery.getResultType() Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.AbstractQuery Class getResultType() Return the result type of the query or subquery . If a result type was specified as an argument to the createQuery or subquery method, that type is returned. If the query was created using | |
jakarta.persistence.criteria.AbstractQuery.getRoots() Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.AbstractQuery Set getRoots() Return the query roots. These are the roots that are defined for the CriteriaQuery or Subquery itself, including any subquery roots defined as a result of correlation. Returns an empty set if no roots | |
JPQL Subqueries (JPA 1.0) The JPQL (Java Persistence Query Language) supports defining subqueries , which are nested queries that are embedded in other queries. Subqueries are currently not supported by ObjectDB, and as a workaround, you can use a sequence of two or more queries, where the results of one query serves as a parameter in the next queries. support Support | |
JDOQL Subqueries (JDO 2.1) Subqueries (nested queries) have been added to JDOQL (JDO Query Language) in JDO 2.1. This is the main feature of JDO 2.0-2.1-2.2 that is not implemented yet in ObjectDB 2. support Support | |
jakarta.persistence.criteria.From.isCorrelated() Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.From boolean isCorrelated() Whether the From object has been obtained as a result of correlation (use of a Subquery .correlate method). Returns: boolean indicating whether the object has been obtained through correlation. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.From.getCorrelationParent() Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.From From getCorrelationParent() Returns the parent From object from which the correlated From object has been obtained through correlation (use of Subquery .correlate method). Returns: the parent of the correlated From object. Throws | |
Get the last occurence of a list attribut HUBERT Subqueries are currently not supported. The workaround in this case (which could also provide much better performance than subqueries ) is to maintain a reference to the last label directly in every RO object. support Support |