ObjectDB Database Search
151-200 of 200 resultsjakarta.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 | |
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 | |
jakarta.persistence.criteria.Order.getNullPrecedence() Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .Order Nulls getNullPrecedence() Return the precedence of null values. Returns: the precedence of null values . Since: Jakarta Persistence (JPA) 3.2 | |
jakarta.persistence.criteria.Order.getExpression() Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .Order Expression getExpression() Return the expression that is used for ordering. Returns: expression used for ordering. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.MapJoin.getModel() Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .MapJoin MapAttribute getModel() Return the metamodel representation for the map attribute. Returns: metamodel type representing the Map that is the target of the join. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.MapJoin.key() Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .MapJoin Path key() Create a path expression that corresponds to the map key. Returns: path corresponding to map key. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.MapJoin.value() Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .MapJoin Path value() Create a path expression that corresponds to the map value. This method is for stylistic use only: it just returns this. Returns: path corresponding to the map value. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.MapJoin.entry() Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .MapJoin Expression entry() Create an expression that corresponds to the map entry. Returns: expression corresponding to the map entry. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.Path.get(MapAttribute) Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .Path Expression get ( MapAttribute map ) Create a path corresponding to the referenced map-valued attribute. Parameters: map - map-valued attribute Returns: expression corresponding to the referenced attribute. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.Path.type() Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .Path Expression type() Create an expression corresponding to the type of the path. Returns: expression corresponding to the type of the path. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.PluralJoin.getModel() Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .PluralJoin PluralAttribute getModel() Return the metamodel representation for the collection-valued attribute corresponding to the join. Returns: metamodel collection-valued attribute corresponding to the target of the join. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.Path.getModel() Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .Path Bindable getModel() Return the bindable object that corresponds to the path expression. Returns: bindable object corresponding to the path. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.Path.getParentPath() Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .Path Path getParentPath() Return the parent "node" in the path or null if no parent. Returns: parent. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.Path.get(SingularAttribute) Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .Path Path get ( SingularAttribute attribute ) Create a path corresponding to the referenced single-valued attribute. Parameters: attribute - single-valued attribute Returns: path corresponding to the referenced attribute. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.Path.get(PluralAttribute) Jakarta Persistence (JPA) Method in jakarta.persistence. criteria .Path Expression get ( PluralAttribute collection ) Create a path corresponding to the referenced collection-valued attribute. Parameters: collection - collection-valued attribute Returns: expression corresponding to the referenced attribute. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.LocalTimeField.LocalTimeField(String) Jakarta Persistence (JPA) Constructor in jakarta.persistence. criteria .LocalTimeField LocalTimeField ( String name ) Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.Nulls.NONE Jakarta Persistence (JPA) Enum Constant in jakarta.persistence. criteria .Nulls NONE Null precedence not specified. Since: Jakarta Persistence (JPA) 1.0 |