| 
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use FetchPlan | |
|---|---|
| org.apache.openjpa.persistence | OpenJPA JPA | 
| org.apache.openjpa.persistence.jdbc | OpenJPA JPA-JDBC | 
| Uses of FetchPlan in org.apache.openjpa.persistence | 
|---|
| Classes in org.apache.openjpa.persistence that implement FetchPlan | |
|---|---|
 class | 
FetchPlanImpl
Implements FetchPlan via delegation to FetchConfiguration.  | 
| Methods in org.apache.openjpa.persistence that return FetchPlan | |
|---|---|
 FetchPlan | 
FetchPlanImpl.addFetchGroup(String group)
 | 
 FetchPlan | 
FetchPlan.addFetchGroup(String group)
Adds group to the set of fetch group to
 use when loading objects. | 
 FetchPlan | 
FetchPlanImpl.addFetchGroups(Collection groups)
 | 
 FetchPlan | 
FetchPlan.addFetchGroups(Collection groups)
Adds groups to the set of fetch group names to
 use when loading objects. | 
 FetchPlan | 
FetchPlanImpl.addFetchGroups(String... groups)
 | 
 FetchPlan | 
FetchPlan.addFetchGroups(String... groups)
Adds groups to the set of fetch group names to
 use when loading objects. | 
 FetchPlan | 
FetchPlanImpl.addField(Class cls,
         String field)
 | 
 FetchPlan | 
FetchPlan.addField(Class cls,
         String field)
Adds field to the set of field names to
 use when loading objects. | 
 FetchPlan | 
FetchPlanImpl.addField(String field)
 | 
 FetchPlan | 
FetchPlan.addField(String field)
Adds field to the set of fully-qualified field names to
 use when loading objects. | 
 FetchPlan | 
FetchPlanImpl.addFields(Class cls,
          Collection fields)
 | 
 FetchPlan | 
FetchPlan.addFields(Class cls,
          Collection fields)
Adds fields to the set of field names to
 use when loading objects. | 
 FetchPlan | 
FetchPlanImpl.addFields(Class cls,
          String... fields)
 | 
 FetchPlan | 
FetchPlan.addFields(Class cls,
          String... fields)
Adds fields to the set of field names to
 use when loading objects. | 
 FetchPlan | 
FetchPlanImpl.addFields(Collection fields)
 | 
 FetchPlan | 
FetchPlan.addFields(Collection fields)
Adds fields to the set of fully-qualified field names to
 use when loading objects. | 
 FetchPlan | 
FetchPlanImpl.addFields(String... fields)
 | 
 FetchPlan | 
FetchPlan.addFields(String... fields)
Adds fields to the set of fully-qualified field names to
 use when loading objects. | 
 FetchPlan | 
FetchPlanImpl.clearFetchGroups()
 | 
 FetchPlan | 
FetchPlan.clearFetchGroups()
Clears the set of fetch group names to use wen loading data.  | 
 FetchPlan | 
FetchPlanImpl.clearFields()
 | 
 FetchPlan | 
FetchPlan.clearFields()
Clears the set of field names to use wen loading data.  | 
 FetchPlan | 
QueryImpl.getFetchPlan()
 | 
 FetchPlan | 
OpenJPAQuery.getFetchPlan()
Fetch plan for controlling the loading of results.  | 
 FetchPlan | 
OpenJPAEntityManager.getFetchPlan()
Return the (mutable) fetch plan for loading objects from this entity manager.  | 
 FetchPlan | 
ExtentImpl.getFetchPlan()
 | 
 FetchPlan | 
Extent.getFetchPlan()
Fetch configuration for controlling how iterated objects are loaded.  | 
 FetchPlan | 
EntityManagerImpl.getFetchPlan()
 | 
 FetchPlan | 
FetchPlanImpl.removeFetchGroup(String group)
 | 
 FetchPlan | 
FetchPlan.removeFetchGroup(String group)
Remove the given fetch group.  | 
 FetchPlan | 
FetchPlanImpl.removeFetchGroups(Collection groups)
 | 
 FetchPlan | 
FetchPlan.removeFetchGroups(Collection groups)
Removes groups from the set of fetch group names
 to use when loading objects. | 
 FetchPlan | 
FetchPlanImpl.removeFetchGroups(String... groups)
 | 
 FetchPlan | 
FetchPlan.removeFetchGroups(String... groups)
Removes groups from the set of fetch group names
 to use when loading objects. | 
 FetchPlan | 
FetchPlanImpl.removeField(Class cls,
            String field)
 | 
 FetchPlan | 
FetchPlan.removeField(Class cls,
            String field)
Remove the given field.  | 
 FetchPlan | 
FetchPlanImpl.removeField(String field)
 | 
 FetchPlan | 
FetchPlan.removeField(String field)
Remove the given fully-qualified field.  | 
 FetchPlan | 
FetchPlanImpl.removeFields(Class cls,
             Collection fields)
 | 
 FetchPlan | 
FetchPlan.removeFields(Class cls,
             Collection fields)
Removes fields from the set of field names
 to use when loading objects. | 
 FetchPlan | 
FetchPlanImpl.removeFields(Class cls,
             String... fields)
 | 
 FetchPlan | 
FetchPlan.removeFields(Class cls,
             String... fields)
Removes fields from the set of field names
 to use when loading objects. | 
 FetchPlan | 
FetchPlanImpl.removeFields(Collection fields)
 | 
 FetchPlan | 
FetchPlan.removeFields(Collection fields)
Removes fields from the set of fully-qualified field names
 to use when loading objects. | 
 FetchPlan | 
FetchPlanImpl.removeFields(String... fields)
 | 
 FetchPlan | 
FetchPlan.removeFields(String... fields)
Removes fields from the set of fully-qualified field names
 to use when loading objects. | 
 FetchPlan | 
FetchPlanImpl.resetFetchGroups()
 | 
 FetchPlan | 
FetchPlan.resetFetchGroups()
Resets the set of fetch groups to the list in the global configuration.  | 
 FetchPlan | 
FetchPlanImpl.setFetchBatchSize(int fetchBatchSize)
 | 
 FetchPlan | 
FetchPlan.setFetchBatchSize(int fetchBatchSize)
Set the fetch batch size for large result set support.  | 
 FetchPlan | 
FetchPlanImpl.setLockTimeout(int timeout)
 | 
 FetchPlan | 
FetchPlan.setLockTimeout(int timeout)
The number of milliseconds to wait for an object lock, or -1 for no limit.  | 
 FetchPlan | 
FetchPlanImpl.setMaxFetchDepth(int depth)
 | 
 FetchPlan | 
FetchPlan.setMaxFetchDepth(int depth)
The maximum fetch depth when loading an object.  | 
 FetchPlan | 
FetchPlanImpl.setQueryResultCacheEnabled(boolean cache)
 | 
 FetchPlan | 
FetchPlan.setQueryResultCacheEnabled(boolean cache)
Control whether or not query caching is enabled.  | 
 FetchPlan | 
FetchPlanImpl.setReadLockMode(LockModeType mode)
 | 
 FetchPlan | 
FetchPlan.setReadLockMode(LockModeType mode)
The lock level to use for locking loaded objects.  | 
 FetchPlan | 
FetchPlanImpl.setWriteLockMode(LockModeType mode)
 | 
 FetchPlan | 
FetchPlan.setWriteLockMode(LockModeType mode)
The lock level to use for locking dirtied objects.  | 
| Uses of FetchPlan in org.apache.openjpa.persistence.jdbc | 
|---|
| Subinterfaces of FetchPlan in org.apache.openjpa.persistence.jdbc | |
|---|---|
 interface | 
JDBCFetchPlan
JDBC extensions to the fetch plan.  | 
| Classes in org.apache.openjpa.persistence.jdbc that implement FetchPlan | |
|---|---|
 class | 
JDBCFetchPlanImpl
JDBC extensions to the fetch plan.  | 
  | 
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||