Package | Description |
---|---|
javax.jdo |
This package contains the JDO specification interfaces and classes.
|
Modifier and Type | Method | Description |
---|---|---|
FetchGroup |
FetchGroup.addCategory(java.lang.String categoryName) |
Add the members (fields or properties) of the named category
to the set of members in this FetchGroup.
|
FetchGroup |
FetchGroup.addMember(java.lang.String memberName) |
Add the member (field or property) to the set of members in this
FetchGroup.
|
FetchGroup |
FetchGroup.addMembers(java.lang.String... memberNames) |
Add the member (field or property) to the set of members in this
FetchGroup.
|
FetchGroup |
PersistenceManager.getFetchGroup(java.lang.Class cls,
java.lang.String name) |
Get a modifiable
FetchGroup for the Class and name. |
FetchGroup |
PersistenceManagerFactory.getFetchGroup(java.lang.Class cls,
java.lang.String name) |
Create an unscoped, modifiable
FetchGroup for the Class and
name. |
FetchGroup |
FetchGroup.removeCategory(java.lang.String categoryName) |
Remove the members (fields or properties) of the named category
from the set of members in this FetchGroup.
|
FetchGroup |
FetchGroup.removeMember(java.lang.String memberName) |
Remove the member (field or property) from the set of members in this
FetchGroup.
|
FetchGroup |
FetchGroup.removeMembers(java.lang.String... memberNames) |
Remove the member (field or property) from the set of members in this
FetchGroup.
|
FetchGroup |
FetchGroup.setPostLoad(boolean postLoad) |
Set the post-load property of this FetchGroup.
|
FetchGroup |
FetchGroup.setRecursionDepth(java.lang.String memberName,
int recursionDepth) |
Set the recursion-depth for this member.
|
FetchGroup |
FetchGroup.setUnmodifiable() |
Make this FetchGroup unmodifiable.
|
Modifier and Type | Method | Description |
---|---|---|
void |
PersistenceManagerFactory.addFetchGroups(FetchGroup... groups) |
Add the
FetchGroup s to the set of active fetch groups. |
void |
PersistenceManagerFactory.removeFetchGroups(FetchGroup... groups) |
Remove the
FetchGroup s from the set of active
FetchGroup s. |