Package | Description |
---|---|
org.apache.openjpa.persistence.query |
OpenJPA Dynamic Query
This package provides dynamic query construction that are similar to weakly-typed Criteria API.
|
Modifier and Type | Class and Description |
---|---|
class |
FetchPath
Denotes a path used in fetch join.
|
Modifier and Type | Method and Description |
---|---|
FetchJoinObject |
DomainObject.joinFetch(String attribute)
Specify that the association or element collection that is referenced by
the attribute be eagerly fetched through use of an inner join.
|
FetchJoinObject |
AbstractDomainObject.joinFetch(String attr)
Derives a path from this path by fetch joining the given field.
|
FetchJoinObject |
DomainObject.leftJoinFetch(String attribute)
Specify that the association or element collection that is referenced by
the attribute be eagerly fetched through use of a left outer join.
|
FetchJoinObject |
AbstractDomainObject.leftJoinFetch(String attr)
Derives a path from this path by fetch joining the given field.
|
Copyright © 2006–2022 Apache Software Foundation. All rights reserved.