Package org.apache.openjpa.util.proxy
Interface ProxyCollection
-
- All Superinterfaces:
Collection
,Iterable
,Proxy
- All Known Implementing Classes:
DelayedArrayListProxy
,DelayedHashSetProxy
,DelayedLinkedHashSetProxy
,DelayedLinkedListProxy
,DelayedPriorityQueueProxy
,DelayedTreeSetProxy
,DelayedVectorProxy
public interface ProxyCollection extends Proxy, Collection
Interface implemented by all proxy collection types.- Author:
- Abe White
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Class
getElementType()
The collection element type.ProxyCollection
newInstance(Class elementType, Comparator comp, boolean trackChanges, boolean autoOff)
Create a new instance of this proxy type.-
Methods inherited from interface java.util.Collection
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, parallelStream, remove, removeAll, removeIf, retainAll, size, spliterator, stream, toArray, toArray, toArray
-
Methods inherited from interface org.apache.openjpa.util.Proxy
copy, getChangeTracker, getOwner, getOwnerField, setOwner
-
-
-
-
Method Detail
-
getElementType
Class getElementType()
The collection element type.
-
newInstance
ProxyCollection newInstance(Class elementType, Comparator comp, boolean trackChanges, boolean autoOff)
Create a new instance of this proxy type.
-
-