Package org.apache.openjpa.kernel
Class FetchConfigurationImpl
- java.lang.Object
 - 
- org.apache.openjpa.kernel.FetchConfigurationImpl
 
 
- 
- All Implemented Interfaces:
 java.io.Serializable,java.lang.Cloneable,FetchConfiguration,LockLevels,LockScopes,QueryFlushModes
- Direct Known Subclasses:
 JDBCFetchConfigurationImpl
public class FetchConfigurationImpl extends java.lang.Object implements FetchConfiguration, java.lang.Cloneable
Allows configuration and optimization of how objects are loaded from the data store.- Since:
 - 0.3.0
 - Author:
 - Abe White, Pinaki Poddar
 - See Also:
 - Serialized Form
 
 
- 
- 
Nested Class Summary
Nested Classes Modifier and Type Class Description protected static classFetchConfigurationImpl.ConfigurationStateConfigurable state shared throughout a traversal chain. 
- 
Field Summary
- 
Fields inherited from interface org.apache.openjpa.kernel.FetchConfiguration
DEFAULT, FETCH_LOAD, FETCH_NONE, FETCH_REF 
- 
Fields inherited from interface org.apache.openjpa.kernel.LockLevels
LOCK_NONE, LOCK_READ, LOCK_WRITE 
- 
Fields inherited from interface org.apache.openjpa.kernel.LockScopes
LOCKSCOPE_EXTENDED, LOCKSCOPE_NORMAL 
- 
Fields inherited from interface org.apache.openjpa.kernel.QueryFlushModes
FLUSH_FALSE, FLUSH_TRUE, FLUSH_WITH_CONNECTION 
 - 
 
- 
Constructor Summary
Constructors Modifier Constructor Description FetchConfigurationImpl()protectedFetchConfigurationImpl(FetchConfigurationImpl.ConfigurationState state) 
- 
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description FetchConfigurationaddFetchGroup(java.lang.String name)Addsgroupto the set of fetch group names to use when loading objects.FetchConfigurationaddFetchGroups(java.util.Collection<java.lang.String> groups)Addsgroupsto the set of fetch group names to use when loading objects.FetchConfigurationaddField(java.lang.String field)Addsfieldto the set of fully-qualified field names to use when loading objects.FetchConfigurationaddFields(java.util.Collection<java.lang.String> fields)Addsfieldsto the set of fully-qualified field names to use when loading objects.FetchConfigurationclearFetchGroups()Clears the set of fetch group names to use when loading data.FetchConfigurationclearFields()Clears the set of field names to use when loading data.java.lang.Objectclone()Clone this instance.voidcopy(FetchConfiguration fetch)Copy the state from the given fetch configuration to this one.DataCacheRetrieveModegetCacheRetrieveMode()Gets the current retrieve mode for data cache.DataCacheStoreModegetCacheStoreMode()Gets the current storage mode for data cache.StoreContextgetContext()Return the context associated with this configuration; may be null if it has not been set or this object has been serialized.booleangetExtendedPathLookup()Affirms if extended path lookup feature is active.intgetFetchBatchSize()Return the fetch batch size for large result set support.java.util.Set<java.lang.String>getFetchGroups()Returns immutable set of names of the fetch groups that this component will use when loading objects.java.util.Set<java.lang.String>getFields()Returns the set of fully-qualified field names that this component will use when loading objects.intgetFlushBeforeQueries()The query automatic flush configuration.java.lang.ObjectgetHint(java.lang.String name)Get the hint value for the specific key as originally set by the caller, or null if the hint is not specified.java.util.Map<java.lang.String,java.lang.Object>getHints()Gets the current hints set on this receiver.intgetLockScope()The lock scope for next fetch.intgetLockTimeout()The number of milliseconds to wait for an object lock, or -1 for no limit.intgetMaxFetchDepth()Return the maximum depth of fetched instance graph.booleangetQueryCacheEnabled()Return whether or not query caching is enabled.intgetQueryTimeout()The number of milliseconds to wait for a query, or -1 for no limit.intgetReadLockLevel()The lock level to use for locking loaded objects.java.util.Set<java.lang.Class<?>>getRootClasses()Root classes for recursive operations.java.util.Set<java.lang.Object>getRootInstances()Root instances for recursive operations.java.util.Collection<java.lang.String>getSupportedHints()intgetWriteLockLevel()The lock level to use for locking dirtied objects.booleanhasFetchGroup(java.lang.String group)Return true if the given fetch group has been added.booleanhasFetchGroupAll()booleanhasFetchGroupDefault()booleanhasField(java.lang.String field)Return true if the given fully-qualified field has been added.booleanisDefaultPUFetchGroupConfigurationOnly()Affirm if the Fetch Plan currently matches the Persistence Unit's configured default.booleanisFetchConfigurationSQLCacheAdmissible()Whether SQL generated by the FetchConfiguration's current configuration should be cached.booleanisHintSet(java.lang.String key)Affirms if the given key is set as a hint.voidlock()Synchronize on internal lock if multithreaded is true.protected FetchConfigurationImplnewInstance(FetchConfigurationImpl.ConfigurationState state)Return a new hollow instance.ResultList<?>newResultList(ResultObjectProvider rop)Return a new result list for the current fetch configuration.protected static voidpopulateHintSetter(java.lang.Class<?> target, java.lang.String hint, java.lang.Class<?> type, java.lang.String... prefixes)Populate static registry of hints.protected static voidpopulateHintSetter(java.lang.Class<?> target, java.lang.String method, java.lang.String hint, java.lang.Class<?> type, java.lang.String... prefixes)Populate static registry of hints.FetchConfigurationremoveFetchGroup(java.lang.String group)Remove the given fetch group.FetchConfigurationremoveFetchGroups(java.util.Collection<java.lang.String> groups)Removesgroupsfrom the set of fetch group names to use when loading objects.FetchConfigurationremoveField(java.lang.String field)Remove the given fully-qualified field.FetchConfigurationremoveFields(java.util.Collection<java.lang.String> fields)Removesfieldsfrom the set of fully-qualified field names to use when loading objects.java.lang.ObjectremoveHint(java.lang.String name)voidremoveHint(java.lang.String... keys)Removes the given keys and their hint value.intrequiresFetch(FieldMetaData fm)Affirms if the given field requires to be fetched in the context of current fetch operation.booleanrequiresLoad()Return false if we know that the object being fetched with this configuration does not require a load, because this configuration came from a traversal of aFetchConfiguration.FETCH_REFfield.FetchConfigurationresetFetchGroups()Resets the set of fetch groups to the list in the global configuration.voidsetCacheRetrieveMode(DataCacheRetrieveMode mode)Sets the current retrieve mode for data cache.voidsetCacheStoreMode(DataCacheStoreMode mode)Sets the current storage mode for data cache.voidsetContext(StoreContext ctx)Called automatically by the system to associate the fetch configuration with a context before use.FetchConfigurationsetExtendedPathLookup(boolean flag)Sets extended path lookup feature.FetchConfigurationsetFetchBatchSize(int fetchBatchSize)Set the fetch batch size for large result set support.FetchConfigurationsetFlushBeforeQueries(int flush)The query automatic flush configuration.voidsetHint(java.lang.String key, java.lang.Object value)Same assetHint(key, value, value).voidsetHint(java.lang.String key, java.lang.Object value, java.lang.Object original)Sets the hint to the given value.FetchConfigurationsetLockScope(int scope)The lock scope for next fetch.FetchConfigurationsetLockTimeout(int timeout)The number of milliseconds to wait for an object lock, or -1 for no limit.FetchConfigurationsetMaxFetchDepth(int depth)Set the maximum depth of the fetched instance graph.FetchConfigurationsetQueryCacheEnabled(boolean cache)Control whether or not query caching is enabled.FetchConfigurationsetQueryTimeout(int timeout)The number of milliseconds to wait for a query, or -1 for no limit.FetchConfigurationsetReadLockLevel(int level)The lock level to use for locking loaded objects.FetchConfigurationsetRootClasses(java.util.Collection<java.lang.Class<?>> classes)Root classes for recursive operations.FetchConfigurationsetRootInstances(java.util.Collection<?> instances)Root instances for recursive operations.FetchConfigurationsetWriteLockLevel(int level)The lock level to use for locking dirtied objects.java.lang.StringtoString()protected java.lang.StringtoString(java.lang.Object o)FetchConfigurationtraverse(FieldMetaData fm)Traverse the given field to generate (possibly) a new configuration state.voidunlock()Release internal lock if multithreaded is true. 
 - 
 
- 
- 
Constructor Detail
- 
FetchConfigurationImpl
public FetchConfigurationImpl()
 
- 
FetchConfigurationImpl
protected FetchConfigurationImpl(FetchConfigurationImpl.ConfigurationState state)
 
 - 
 
- 
Method Detail
- 
populateHintSetter
protected static void populateHintSetter(java.lang.Class<?> target, java.lang.String hint, java.lang.Class<?> type, java.lang.String... prefixes)Populate static registry of hints.- Parameters:
 target- The name of the target class that will receive this hint.hint- the simple name of the hint without a prefix.type- the value argument type of the target setter method.prefixes- the prefixes will be added to the simple hint name.
 
- 
populateHintSetter
protected static void populateHintSetter(java.lang.Class<?> target, java.lang.String method, java.lang.String hint, java.lang.Class<?> type, java.lang.String... prefixes)Populate static registry of hints.- Parameters:
 target- The name of the target class that will receive this hint.method- The name of the method in the target class that will receive this hint.hint- the simple name of the hint without a prefix.type- the value argument type of the target setter method.prefixes- the prefixes will be added to the simple hint name.
 
- 
getContext
public StoreContext getContext()
Description copied from interface:FetchConfigurationReturn the context associated with this configuration; may be null if it has not been set or this object has been serialized.- Specified by:
 getContextin interfaceFetchConfiguration
 
- 
setContext
public void setContext(StoreContext ctx)
Description copied from interface:FetchConfigurationCalled automatically by the system to associate the fetch configuration with a context before use. The fetch configuration properties should be synchronized with the context's configuration object. Subclasses for specific back ends cannot rely on the context's configuration implementing their back end's configuration sub-interface.- Specified by:
 setContextin interfaceFetchConfiguration
 
- 
clone
public java.lang.Object clone()
Clone this instance.- Specified by:
 clonein interfaceFetchConfiguration- Overrides:
 clonein classjava.lang.Object
 
- 
newInstance
protected FetchConfigurationImpl newInstance(FetchConfigurationImpl.ConfigurationState state)
Return a new hollow instance. 
- 
copy
public void copy(FetchConfiguration fetch)
Description copied from interface:FetchConfigurationCopy the state from the given fetch configuration to this one.- Specified by:
 copyin interfaceFetchConfiguration
 
- 
getFetchBatchSize
public int getFetchBatchSize()
Description copied from interface:FetchConfigurationReturn the fetch batch size for large result set support. Defaults to theopenjpa.FetchBatchSizesetting. Note that this property will be ignored under some data stores.- Specified by:
 getFetchBatchSizein interfaceFetchConfiguration
 
- 
setFetchBatchSize
public FetchConfiguration setFetchBatchSize(int fetchBatchSize)
Description copied from interface:FetchConfigurationSet the fetch batch size for large result set support. Defaults to theopenjpa.FetchBatchSizesetting. Note that this property will be ignored under some data stores.- Specified by:
 setFetchBatchSizein interfaceFetchConfiguration
 
- 
getMaxFetchDepth
public int getMaxFetchDepth()
Description copied from interface:FetchConfigurationReturn the maximum depth of fetched instance graph. Defaults to1- Specified by:
 getMaxFetchDepthin interfaceFetchConfiguration
 
- 
setMaxFetchDepth
public FetchConfiguration setMaxFetchDepth(int depth)
Description copied from interface:FetchConfigurationSet the maximum depth of the fetched instance graph.- Specified by:
 setMaxFetchDepthin interfaceFetchConfiguration- Parameters:
 depth- denotes limiting length of traversal path from a root instance.-1implies no limit.0is not permissible.
 
- 
getQueryCacheEnabled
public boolean getQueryCacheEnabled()
Description copied from interface:FetchConfigurationReturn whether or not query caching is enabled. If this returnstruebut the datacache plugin is not installed, caching will not be enabled. If this returnsfalse, query caching will not be used even if the datacache plugin is installed.- Specified by:
 getQueryCacheEnabledin interfaceFetchConfiguration
 
- 
setQueryCacheEnabled
public FetchConfiguration setQueryCacheEnabled(boolean cache)
Description copied from interface:FetchConfigurationControl whether or not query caching is enabled. This has no effect if the datacache plugin is not installed, or if the query cache size is set to zero.- Specified by:
 setQueryCacheEnabledin interfaceFetchConfiguration
 
- 
getFlushBeforeQueries
public int getFlushBeforeQueries()
Description copied from interface:FetchConfigurationThe query automatic flush configuration.- Specified by:
 getFlushBeforeQueriesin interfaceFetchConfiguration
 
- 
getExtendedPathLookup
public boolean getExtendedPathLookup()
Description copied from interface:FetchConfigurationAffirms if extended path lookup feature is active.- Specified by:
 getExtendedPathLookupin interfaceFetchConfiguration
 
- 
setExtendedPathLookup
public FetchConfiguration setExtendedPathLookup(boolean flag)
Description copied from interface:FetchConfigurationSets extended path lookup feature.- Specified by:
 setExtendedPathLookupin interfaceFetchConfiguration
 
- 
setFlushBeforeQueries
public FetchConfiguration setFlushBeforeQueries(int flush)
Description copied from interface:FetchConfigurationThe query automatic flush configuration.- Specified by:
 setFlushBeforeQueriesin interfaceFetchConfiguration
 
- 
getFetchGroups
public java.util.Set<java.lang.String> getFetchGroups()
Description copied from interface:FetchConfigurationReturns immutable set of names of the fetch groups that this component will use when loading objects. Defaults to theopenjpa.FetchGroupssetting. This set is not thread safe.- Specified by:
 getFetchGroupsin interfaceFetchConfiguration
 
- 
hasFetchGroup
public boolean hasFetchGroup(java.lang.String group)
Description copied from interface:FetchConfigurationReturn true if the given fetch group has been added.- Specified by:
 hasFetchGroupin interfaceFetchConfiguration
 
- 
hasFetchGroupDefault
public boolean hasFetchGroupDefault()
 
- 
hasFetchGroupAll
public boolean hasFetchGroupAll()
 
- 
addFetchGroup
public FetchConfiguration addFetchGroup(java.lang.String name)
Description copied from interface:FetchConfigurationAddsgroupto the set of fetch group names to use when loading objects.- Specified by:
 addFetchGroupin interfaceFetchConfiguration
 
- 
addFetchGroups
public FetchConfiguration addFetchGroups(java.util.Collection<java.lang.String> groups)
Description copied from interface:FetchConfigurationAddsgroupsto the set of fetch group names to use when loading objects.- Specified by:
 addFetchGroupsin interfaceFetchConfiguration
 
- 
removeFetchGroup
public FetchConfiguration removeFetchGroup(java.lang.String group)
Description copied from interface:FetchConfigurationRemove the given fetch group.- Specified by:
 removeFetchGroupin interfaceFetchConfiguration
 
- 
removeFetchGroups
public FetchConfiguration removeFetchGroups(java.util.Collection<java.lang.String> groups)
Description copied from interface:FetchConfigurationRemovesgroupsfrom the set of fetch group names to use when loading objects.- Specified by:
 removeFetchGroupsin interfaceFetchConfiguration
 
- 
clearFetchGroups
public FetchConfiguration clearFetchGroups()
Description copied from interface:FetchConfigurationClears the set of fetch group names to use when loading data. After this operation is invoked, only those fields in the default fetch group (and any requested field) will be loaded when loading an object.- Specified by:
 clearFetchGroupsin interfaceFetchConfiguration
 
- 
resetFetchGroups
public FetchConfiguration resetFetchGroups()
Description copied from interface:FetchConfigurationResets the set of fetch groups to the list in the global configuration.- Specified by:
 resetFetchGroupsin interfaceFetchConfiguration
 
- 
isDefaultPUFetchGroupConfigurationOnly
public boolean isDefaultPUFetchGroupConfigurationOnly()
Description copied from interface:FetchConfigurationAffirm if the Fetch Plan currently matches the Persistence Unit's configured default.- Specified by:
 isDefaultPUFetchGroupConfigurationOnlyin interfaceFetchConfiguration
 
- 
isFetchConfigurationSQLCacheAdmissible
public boolean isFetchConfigurationSQLCacheAdmissible()
Description copied from interface:FetchConfigurationWhether SQL generated by the FetchConfiguration's current configuration should be cached.- Specified by:
 isFetchConfigurationSQLCacheAdmissiblein interfaceFetchConfiguration
 
- 
getFields
public java.util.Set<java.lang.String> getFields()
Description copied from interface:FetchConfigurationReturns the set of fully-qualified field names that this component will use when loading objects. Defaults to the empty set. This set is not thread safe.- Specified by:
 getFieldsin interfaceFetchConfiguration
 
- 
hasField
public boolean hasField(java.lang.String field)
Description copied from interface:FetchConfigurationReturn true if the given fully-qualified field has been added.- Specified by:
 hasFieldin interfaceFetchConfiguration
 
- 
addField
public FetchConfiguration addField(java.lang.String field)
Description copied from interface:FetchConfigurationAddsfieldto the set of fully-qualified field names to use when loading objects.- Specified by:
 addFieldin interfaceFetchConfiguration
 
- 
addFields
public FetchConfiguration addFields(java.util.Collection<java.lang.String> fields)
Description copied from interface:FetchConfigurationAddsfieldsto the set of fully-qualified field names to use when loading objects.- Specified by:
 addFieldsin interfaceFetchConfiguration
 
- 
removeField
public FetchConfiguration removeField(java.lang.String field)
Description copied from interface:FetchConfigurationRemove the given fully-qualified field.- Specified by:
 removeFieldin interfaceFetchConfiguration
 
- 
removeFields
public FetchConfiguration removeFields(java.util.Collection<java.lang.String> fields)
Description copied from interface:FetchConfigurationRemovesfieldsfrom the set of fully-qualified field names to use when loading objects.- Specified by:
 removeFieldsin interfaceFetchConfiguration
 
- 
clearFields
public FetchConfiguration clearFields()
Description copied from interface:FetchConfigurationClears the set of field names to use when loading data. After this operation is invoked, only those fields in the configured fetch groups will be loaded when loading an object.- Specified by:
 clearFieldsin interfaceFetchConfiguration
 
- 
getCacheRetrieveMode
public DataCacheRetrieveMode getCacheRetrieveMode()
Description copied from interface:FetchConfigurationGets the current retrieve mode for data cache.- Specified by:
 getCacheRetrieveModein interfaceFetchConfiguration
 
- 
getCacheStoreMode
public DataCacheStoreMode getCacheStoreMode()
Description copied from interface:FetchConfigurationGets the current storage mode for data cache.- Specified by:
 getCacheStoreModein interfaceFetchConfiguration
 
- 
setCacheRetrieveMode
public void setCacheRetrieveMode(DataCacheRetrieveMode mode)
Description copied from interface:FetchConfigurationSets the current retrieve mode for data cache.- Specified by:
 setCacheRetrieveModein interfaceFetchConfiguration
 
- 
setCacheStoreMode
public void setCacheStoreMode(DataCacheStoreMode mode)
Description copied from interface:FetchConfigurationSets the current storage mode for data cache.- Specified by:
 setCacheStoreModein interfaceFetchConfiguration
 
- 
getLockTimeout
public int getLockTimeout()
Description copied from interface:FetchConfigurationThe number of milliseconds to wait for an object lock, or -1 for no limit.- Specified by:
 getLockTimeoutin interfaceFetchConfiguration
 
- 
setLockTimeout
public FetchConfiguration setLockTimeout(int timeout)
Description copied from interface:FetchConfigurationThe number of milliseconds to wait for an object lock, or -1 for no limit.- Specified by:
 setLockTimeoutin interfaceFetchConfiguration
 
- 
getQueryTimeout
public int getQueryTimeout()
Description copied from interface:FetchConfigurationThe number of milliseconds to wait for a query, or -1 for no limit.- Specified by:
 getQueryTimeoutin interfaceFetchConfiguration
 
- 
setQueryTimeout
public FetchConfiguration setQueryTimeout(int timeout)
Description copied from interface:FetchConfigurationThe number of milliseconds to wait for a query, or -1 for no limit.- Specified by:
 setQueryTimeoutin interfaceFetchConfiguration
 
- 
getLockScope
public int getLockScope()
Description copied from interface:FetchConfigurationThe lock scope for next fetch.- Specified by:
 getLockScopein interfaceFetchConfiguration
 
- 
setLockScope
public FetchConfiguration setLockScope(int scope)
Description copied from interface:FetchConfigurationThe lock scope for next fetch.- Specified by:
 setLockScopein interfaceFetchConfiguration
 
- 
getReadLockLevel
public int getReadLockLevel()
Description copied from interface:FetchConfigurationThe lock level to use for locking loaded objects.- Specified by:
 getReadLockLevelin interfaceFetchConfiguration
 
- 
setReadLockLevel
public FetchConfiguration setReadLockLevel(int level)
Description copied from interface:FetchConfigurationThe lock level to use for locking loaded objects.- Specified by:
 setReadLockLevelin interfaceFetchConfiguration
 
- 
getWriteLockLevel
public int getWriteLockLevel()
Description copied from interface:FetchConfigurationThe lock level to use for locking dirtied objects.- Specified by:
 getWriteLockLevelin interfaceFetchConfiguration
 
- 
setWriteLockLevel
public FetchConfiguration setWriteLockLevel(int level)
Description copied from interface:FetchConfigurationThe lock level to use for locking dirtied objects.- Specified by:
 setWriteLockLevelin interfaceFetchConfiguration
 
- 
newResultList
public ResultList<?> newResultList(ResultObjectProvider rop)
Description copied from interface:FetchConfigurationReturn a new result list for the current fetch configuration.- Specified by:
 newResultListin interfaceFetchConfiguration
 
- 
getHints
public java.util.Map<java.lang.String,java.lang.Object> getHints()
Gets the current hints set on this receiver. The values designate the actual value specified by the caller and not the values that may have been actually set on the state variables of this receiver.- Specified by:
 getHintsin interfaceFetchConfiguration
 
- 
isHintSet
public boolean isHintSet(java.lang.String key)
Affirms if the given key is set as a hint.- Specified by:
 isHintSetin interfaceFetchConfiguration
 
- 
removeHint
public void removeHint(java.lang.String... keys)
Removes the given keys and their hint value. 
- 
getSupportedHints
public java.util.Collection<java.lang.String> getSupportedHints()
 
- 
setHint
public void setHint(java.lang.String key, java.lang.Object value)Same assetHint(key, value, value).- Specified by:
 setHintin interfaceFetchConfigurationvalue- the value of the hint. If the hint has a corresponding setter, then the type of value must be same as the setter argument.- See Also:
 setHint(String, Object, Object)
 
- 
setHint
public void setHint(java.lang.String key, java.lang.Object value, java.lang.Object original)Sets the hint to the given value. If the key corresponds to a known key, then that value is set via the setter method. Otherwise it is put into opaque hints map.
In either case, the original value is put in the hints map. So essential difference between setting a value directly by a setter and via a hint is the memory of this original value.
The other important difference is setting lock levels. Setting of lock level via setter method needs active transaction. But setting via hint does not.- Specified by:
 setHintin interfaceFetchConfiguration- Parameters:
 key- a hint key. If it is one of the statically registered hint key then the setter is called.value- to be set. The given value type must match the argument type of the setter, if one exists.original- value as specified by the caller. This value is put in the hints map.- Throws:
 java.lang.IllegalArgumentException- if the given value is not acceptable by the setter method, if one exists corresponds the given hint key.
 
- 
getHint
public java.lang.Object getHint(java.lang.String name)
Description copied from interface:FetchConfigurationGet the hint value for the specific key as originally set by the caller, or null if the hint is not specified.- Specified by:
 getHintin interfaceFetchConfiguration
 
- 
removeHint
public java.lang.Object removeHint(java.lang.String name)
 
- 
getRootClasses
public java.util.Set<java.lang.Class<?>> getRootClasses()
Description copied from interface:FetchConfigurationRoot classes for recursive operations. This set is not thread safe.- Specified by:
 getRootClassesin interfaceFetchConfiguration
 
- 
setRootClasses
public FetchConfiguration setRootClasses(java.util.Collection<java.lang.Class<?>> classes)
Description copied from interface:FetchConfigurationRoot classes for recursive operations.- Specified by:
 setRootClassesin interfaceFetchConfiguration
 
- 
getRootInstances
public java.util.Set<java.lang.Object> getRootInstances()
Description copied from interface:FetchConfigurationRoot instances for recursive operations. This set is not thread safe.- Specified by:
 getRootInstancesin interfaceFetchConfiguration
 
- 
setRootInstances
public FetchConfiguration setRootInstances(java.util.Collection<?> instances)
Description copied from interface:FetchConfigurationRoot instances for recursive operations.- Specified by:
 setRootInstancesin interfaceFetchConfiguration
 
- 
lock
public void lock()
Description copied from interface:FetchConfigurationSynchronize on internal lock if multithreaded is true.- Specified by:
 lockin interfaceFetchConfiguration
 
- 
unlock
public void unlock()
Description copied from interface:FetchConfigurationRelease internal lock if multithreaded is true.- Specified by:
 unlockin interfaceFetchConfiguration
 
- 
requiresFetch
public int requiresFetch(FieldMetaData fm)
Description copied from interface:FetchConfigurationAffirms if the given field requires to be fetched in the context of current fetch operation. Returns one ofFetchConfiguration.FETCH_NONE,FetchConfiguration.FETCH_LOAD,FetchConfiguration.FETCH_REF.- Specified by:
 requiresFetchin interfaceFetchConfiguration
 
- 
requiresLoad
public boolean requiresLoad()
Description copied from interface:FetchConfigurationReturn false if we know that the object being fetched with this configuration does not require a load, because this configuration came from a traversal of aFetchConfiguration.FETCH_REFfield.- Specified by:
 requiresLoadin interfaceFetchConfiguration
 
- 
traverse
public FetchConfiguration traverse(FieldMetaData fm)
Description copied from interface:FetchConfigurationTraverse the given field to generate (possibly) a new configuration state.- Specified by:
 traversein interfaceFetchConfiguration- Returns:
 - a new configuration state resulting out of traversal
 
 
- 
toString
public java.lang.String toString()
- Overrides:
 toStringin classjava.lang.Object
 
- 
toString
protected java.lang.String toString(java.lang.Object o)
 
 - 
 
 -