EclipseLink 1.1.1_ 1.1.1.v20090430-r4097 API Reference

org.eclipse.persistence.indirection
Interface IndirectCollection

All Superinterfaces:
IndirectContainer
All Known Implementing Classes:
IndirectList, IndirectMap, IndirectSet

public interface IndirectCollection
extends IndirectContainer

Purpose: Common interface to indirect collections.

Author:
James Sutherland
Since:
TopLink 10.1.3

Method Summary
 java.util.Collection getAddedElements()
          INTERNAL: Return if the collection has any elements added that have been deferred to instantiation.
 java.lang.Object getDelegateObject()
          INTERNAL: Return the real collection object.
 java.util.Collection getRemovedElements()
          INTERNAL: Return if the collection has any elements removed that have been deferred to instantiation.
 boolean hasDeferredChanges()
          INTERNAL: Return if the collection has any changes that have been deferred to instantiation.
 
Methods inherited from interface org.eclipse.persistence.indirection.IndirectContainer
getValueHolder, isInstantiated, setValueHolder
 

Method Detail

hasDeferredChanges

boolean hasDeferredChanges()
INTERNAL: Return if the collection has any changes that have been deferred to instantiation. Indirect collections with change tracking avoid instantiation on add/remove.


getAddedElements

java.util.Collection getAddedElements()
INTERNAL: Return if the collection has any elements added that have been deferred to instantiation. Indirect collections with change tracking avoid instantiation on add/remove.


getRemovedElements

java.util.Collection getRemovedElements()
INTERNAL: Return if the collection has any elements removed that have been deferred to instantiation. Indirect collections with change tracking avoid instantiation on add/remove.


getDelegateObject

java.lang.Object getDelegateObject()
INTERNAL: Return the real collection object. This will force instantiation.


EclipseLink 1.1.1_ 1.1.1.v20090430-r4097 API Reference