Uses of Interface
org.apache.openjpa.persistence.query.PathExpression
-
Packages that use PathExpression Package Description org.apache.openjpa.persistence.query OpenJPA Dynamic Query -
-
Uses of PathExpression in org.apache.openjpa.persistence.query
Subinterfaces of PathExpression in org.apache.openjpa.persistence.query Modifier and Type Interface Description interfaceDomainObjectDomain objects define the domain over which a query operates.Classes in org.apache.openjpa.persistence.query that implement PathExpression Modifier and Type Class Description classAbstractDomainObjectDomain Object is a path expression over which query is evaluated.classEntryExpressionDenotes ENTRY(e) on a path.classFetchPathDenotes a path used in fetch join.classJoinPathPath resulting by joining from a parent path via an attribute.classKeyExpressionDenotes KEY(e) Expression.classOperatorPathA path resulting from KEY() or VALUE() operation on an existing path.classRootPathDenotes root domain instance representing a persistent type.classValueExpressionDenotes VALUE(e) Expression.Methods in org.apache.openjpa.persistence.query that return PathExpression Modifier and Type Method Description PathExpressionAbstractDomainObject. get(java.lang.String attr)Derives a path from this path by navigating through the given field.PathExpressionPathExpression. get(java.lang.String attributeName)Return a path expression corresponding to the referenced attribute.PathExpressionAbstractDomainObject. key()Derives by KEY() operation on this path.PathExpressionDomainObject. key()Return a path expression corresponding to the key of a map-valued association or element collection.PathExpressionAbstractDomainObject. value()Derives a path by VALUE() operation on this path.PathExpressionDomainObject. value()Return a path expression corresponding to the value of a map-valued association or element collection.Methods in org.apache.openjpa.persistence.query with parameters of type PathExpression Modifier and Type Method Description DomainObjectAbstractDomainObject. addSubqueryRoot(PathExpression path)Adding a query root adds a subquery to the owning query.DomainObjectQueryDefinition. addSubqueryRoot(PathExpression path)Add a root derived from a domain object of the containing query definition to a query definition used as a subquery.DomainObjectQueryDefinitionImpl. addSubqueryRoot(PathExpression path)DomainObjectQueryBuilder. createSubqueryDefinition(PathExpression path)Create a query definition object whose root is derived from a domain object of the containing query.DomainObjectQueryBuilderImpl. createSubqueryDefinition(PathExpression path)Creates a QueryDefinition that can be used a correlated subquery with the given path as domain.QueryDefinitionAbstractDomainObject. groupBy(PathExpression... pathExprs)QueryDefinitionQueryDefinition. groupBy(PathExpression... pathExprs)Specify the items that are used to form groups over the query results.QueryDefinitionQueryDefinitionImpl. groupBy(PathExpression... pathExprs)PredicateExpression. member(PathExpression arg)Create a predicate for testing whether the expression is a member of the association or element collection denoted by the path expression.Method parameters in org.apache.openjpa.persistence.query with type arguments of type PathExpression Modifier and Type Method Description QueryDefinitionAbstractDomainObject. groupBy(java.util.List<PathExpression> pathExprList)QueryDefinitionQueryDefinition. groupBy(java.util.List<PathExpression> pathExprList)Specify the items that are used to form groups over the query results.QueryDefinitionQueryDefinitionImpl. groupBy(java.util.List<PathExpression> pathExprList)
-