Package org.apache.openjpa.util.proxy
Interface ProxyCollection
- All Superinterfaces:
Collection
,Iterable
,Proxy
- All Known Implementing Classes:
DelayedArrayListProxy
,DelayedHashSetProxy
,DelayedLinkedHashSetProxy
,DelayedLinkedListProxy
,DelayedPriorityQueueProxy
,DelayedTreeSetProxy
,DelayedVectorProxy
Interface implemented by all proxy collection types.
- Author:
- Abe White
-
Method Summary
Modifier and TypeMethodDescriptionThe collection element type.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 Details
-
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.
-