ObjectDB Database Search
51-100 of 200 resultsjakarta.persistence.criteria.CriteriaBuilder.sumAsLong(Expression) Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .CriteriaBuilder Expression sumAsLong ( Expression x ) Create an aggregate expression applying the sum operation to an Integer-valued expression, returning a Long result. Parameters: x - expression representing input | |
jakarta.persistence.criteria.CriteriaBuilder.sumAsDouble(Expression) Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .CriteriaBuilder Expression sumAsDouble ( Expression x ) Create an aggregate expression applying the sum operation to a Float-valued expression, returning a Double result. Parameters: x - expression representing input | |
jakarta.persistence.criteria.CriteriaBuilder.asc(Expression) Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .CriteriaBuilder Order asc ( Expression expression ) Create an ordering by the ascending value of the expression. Parameters: expression - expression used to define the ordering Returns: ascending ordering corresponding to the expression. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.CriteriaBuilder.desc(Expression) Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .CriteriaBuilder Order desc ( Expression expression ) Create an ordering by the descending value of the expression. Parameters: expression - expression used to define the ordering Returns: descending ordering | |
jakarta.persistence.criteria.CriteriaBuilder.asc(Expression,Nulls) Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .CriteriaBuilder Order asc ( Expression expression , Nulls nullPrecedence ) Create an ordering by the ascending value of the expression. Parameters: expression - expression used to define the ordering | |
jakarta.persistence.criteria.CriteriaBuilder.desc(Expression,Nulls) Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .CriteriaBuilder Order desc ( Expression expression , Nulls nullPrecedence ) Create an ordering by the descending value of the expression. Parameters: expression - expression used to define the ordering | |
jakarta.persistence.criteria.AbstractQuery.from(Class) Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .AbstractQuery Root from ( Class entityClass ) Create and add a query root corresponding to the given entity, forming a cartesian product with any existing roots. Parameters: entityClass - the entity class Returns: query | |
jakarta.persistence.criteria.AbstractQuery.from(EntityType) Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .AbstractQuery Root from ( EntityType entity ) Create and add a query root corresponding to the given entity, forming a cartesian product with any existing roots. Parameters: entity - metamodel entity representing | |
jakarta.persistence.criteria.Root.getModel() Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .Root EntityType getModel() Return the metamodel entity corresponding to the root. Returns: metamodel entity corresponding to the root. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.Selection.alias(String) Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .Selection Selection alias ( String name ) Assigns an alias to the selection item. Once assigned, an alias cannot be changed or reassigned. Returns the same selection item. Parameters: name - alias Returns: selection item. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.Selection.isCompoundSelection() Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .Selection boolean isCompoundSelection() Whether the selection item is a compound selection. Returns: boolean indicating whether the selection is a compound selection. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.Selection.getCompoundSelectionItems() Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .Selection List getCompoundSelectionItems() Return the selection items composing a compound selection. Modifications to the list do not affect the query. Returns: list of selection items. Throws: IllegalStateException - if selection | |
jakarta.persistence.criteria.Predicate.getOperator() Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .Predicate BooleanOperator getOperator() Return the boolean operator for the predicate. If the predicate is simple, this is AND . Returns: boolean operator for the predicate. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.AbstractQuery.groupBy(List) Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .AbstractQuery AbstractQuery groupBy ( List grouping ) Specify the expressions that are used to form groups over the query results. Replaces the previous specified grouping expressions, if any. If no grouping expressions | |
jakarta.persistence.criteria.Predicate.isNegated() Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .Predicate boolean isNegated() Whether the predicate has been created from another predicate by applying Predicate.not or by calling CriteriaBuilder.not . Returns: boolean indicating if the predicate is a negated predicate. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.AbstractQuery.having(Expression) Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .AbstractQuery AbstractQuery having ( Expression restriction ) Specify a restriction over the groups of the query. Replaces the previous having restriction(s), if any. Parameters: restriction - a simple or compound | |
jakarta.persistence.criteria.Predicate.getExpressions() Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .Predicate List getExpressions() Return the top-level conjuncts or disjuncts of the predicate. Returns empty list if there are no top-level conjuncts or disjuncts of the predicate. Modifications to the list do not affect the query | |
jakarta.persistence.criteria.AbstractQuery.having(Predicate...) Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .AbstractQuery AbstractQuery having ( Predicate... restrictions ) Specify restrictions over the groups of the query according the conjunction of the specified restriction predicates. Replaces the previously having added | |
jakarta.persistence.criteria.Predicate.not() Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .Predicate Predicate not() Create a negation of the predicate. Returns: negated predicate. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.AbstractQuery.having(List) Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .AbstractQuery AbstractQuery having ( List restrictions ) Specify restrictions over the groups of the query according the conjunction of the specified restriction predicates. Replaces the previously added having | |
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 boolean expression. Replaces the previously added restriction(s), if any. This method | |
jakarta.persistence.criteria.AbstractQuery.where(Expression) Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .AbstractQuery AbstractQuery where ( Expression restriction ) Modify the query to restrict the query results according to the specified boolean expression. Replaces the previously added restriction(s), if any. Parameters | |
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 to the conjunction of the specified restriction predicates. Replaces the previously added restriction(s), if any | |
jakarta.persistence.criteria.AbstractQuery.where(Predicate...) Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .AbstractQuery AbstractQuery where ( Predicate... restrictions ) Modify the query to restrict the query results according to the conjunction of the specified restriction predicates. Replaces the previously added | |
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.AbstractQuery.where(List) Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .AbstractQuery AbstractQuery 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 | |
jakarta.persistence.criteria.Subquery.groupBy(Expression...) Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .Subquery Subquery groupBy ( Expression ... grouping ) Specify the expressions that are used to form groups over the subquery results. Replaces the previous specified grouping expressions, if any. If no grouping | |
jakarta.persistence.criteria.AbstractQuery.groupBy(Expression...) Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .AbstractQuery AbstractQuery groupBy ( Expression ... grouping ) Specify the expressions that are used to form groups over the query results. Replaces the previous specified grouping expressions, if any. If no grouping | |
jakarta.persistence.criteria.SetJoin.on(Expression) Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .SetJoin SetJoin on ( Expression restriction ) Modify the join to restrict the result according to the specified ON condition and return the join object. Replaces the previous ON condition, if any. Parameters: restriction | |
jakarta.persistence.criteria.SetJoin.on(Predicate...) Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .SetJoin SetJoin on ( Predicate... restrictions ) Modify the join to restrict the result according to the specified ON condition and return the join object. Replaces the previous ON condition, if any. Parameters | |
jakarta.persistence.criteria.SetJoin.getModel() Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .SetJoin SetAttribute getModel() Return the metamodel representation for the set attribute. Returns: metamodel type representing the Set that is the target of the join. 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. Replaces the previously specified selection, if any. Parameters: expression - expression specifying | |
jakarta.persistence.criteria.Subquery.distinct(boolean) Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .Subquery Subquery distinct ( boolean distinct ) Specify whether duplicate query results are eliminated. A true value will cause duplicates to be eliminated. A false value will cause duplicates to be retained. If distinct | |
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 correlated to a collection join object of the enclosing query. Parameters: parentCollection - join object | |
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 results. Replaces the previous specified grouping expressions, if any. If no grouping expressions | |
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 the previous having restriction(s), if any. This method only overrides the return type | |
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 the conjunction of the specified restriction predicates. Replaces the previously added having | |
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.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.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 | |
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.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.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.Join.getAttribute() Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .Join Attribute getAttribute() Return the metamodel attribute representing the join target, if any, or null if the target of the join is an entity type. Returns: metamodel attribute or null. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.Join.getParent() Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .Join From getParent() Return the parent of the join. Returns: join parent. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.Join.getJoinType() Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .Join JoinType getJoinType() Return the join type. Returns: join type. Since: Jakarta Persistence (JPA) 1.0 |