Package org.apache.openjpa.util.proxy
Interface ProxyCollection
-
- All Superinterfaces:
java.util.Collection
,java.lang.Iterable
,Proxy
- All Known Implementing Classes:
DelayedArrayListProxy
,DelayedHashSetProxy
,DelayedLinkedHashSetProxy
,DelayedLinkedListProxy
,DelayedPriorityQueueProxy
,DelayedTreeSetProxy
,DelayedVectorProxy
public interface ProxyCollection extends Proxy, java.util.Collection
Interface implemented by all proxy collection types.- Author:
- Abe White
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Class
getElementType()
The collection element type.ProxyCollection
newInstance(java.lang.Class elementType, java.util.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
java.lang.Class getElementType()
The collection element type.
-
newInstance
ProxyCollection newInstance(java.lang.Class elementType, java.util.Comparator comp, boolean trackChanges, boolean autoOff)
Create a new instance of this proxy type.
-
-