ObjectDB Database Search

151-200 of 200 results

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.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.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.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

jakarta.persistence.criteria.ListJoin.on(Expression)

Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .ListJoin ListJoin 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

jakarta.persistence.criteria.From.joinMap(String,JoinType)

Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .From MapJoin joinMap (    String attributeName ,    JoinType jt ) Create a join to the specified Map -valued attribute using the given join type. Parameters: attributeName - name of the attribute for the target

jakarta.persistence.criteria.Join.on(Expression)

Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .Join Join 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.Join.on(Predicate...)

Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .Join Join 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: restrictions

jakarta.persistence.criteria.Join.getOn()

Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .Join Predicate getOn() Return the predicate that corresponds to the ON restriction(s) on the join, or null if no ON condition has been specified. Returns: the ON restriction predicate. Since: Jakarta Persistence (JPA) 2.1

jakarta.persistence.criteria.LocalDateTimeField.toString()

Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .LocalDateTimeField String toString() Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.criteria.LocalTimeField.toString()

Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .LocalTimeField String toString() Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.criteria.MapJoin.on(Expression)

Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .MapJoin MapJoin 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.MapJoin.on(Predicate...)

Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .MapJoin MapJoin 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.ListJoin.on(Predicate...)

Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .ListJoin ListJoin 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.ListJoin.getModel()

Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .ListJoin ListAttribute getModel() Return the metamodel representation for the list attribute. Returns: metamodel type representing the List that is the target of the join. Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.criteria.ListJoin.index()

Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .ListJoin Expression index() Create an expression that corresponds to the index of the object in the referenced association or element collection. This method must only be invoked upon an object that represents an association or

jakarta.persistence.criteria.LocalDateField.toString()

Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .LocalDateField String toString() Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.criteria.Order.reverse()

Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .Order Order reverse() Switch the ordering. Returns: a new Order instance with the reversed ordering. Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.criteria.Order.isAscending()

Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .Order boolean isAscending() Whether ascending ordering is in effect. Returns: boolean indicating whether ordering is ascending. Since: Jakarta Persistence (JPA) 1.0