Uses of Interface
org.apache.openjpa.util.proxy.ProxyCollection
-
Uses of ProxyCollection in org.apache.openjpa.util.proxy
Modifier and TypeClassDescriptionclass
ArrayList proxy with delay loading capability.class
HashSet proxy with delay loading capability.class
LinkedHashSet proxy with delay loading capability.class
LinkedList proxy with delay loading capability.class
PriorityQueue proxy with delay loading capability.class
TreeSet proxy with delay loading capability.class
Vector proxy with delay loading capability.Modifier and TypeMethodDescriptionDelayedArrayListProxy.newInstance
(Class paramClass, Comparator paramComparator, boolean paramBoolean1, boolean paramBoolean2) DelayedHashSetProxy.newInstance
(Class paramClass, Comparator paramComparator, boolean paramBoolean1, boolean paramBoolean2) DelayedLinkedHashSetProxy.newInstance
(Class paramClass, Comparator paramComparator, boolean paramBoolean1, boolean paramBoolean2) DelayedLinkedListProxy.newInstance
(Class paramClass, Comparator paramComparator, boolean paramBoolean1, boolean paramBoolean2) DelayedPriorityQueueProxy.newInstance
(Class paramClass, Comparator paramComparator, boolean paramBoolean1, boolean paramBoolean2) DelayedTreeSetProxy.newInstance
(Class paramClass, Comparator paramComparator, boolean paramBoolean1, boolean paramBoolean2) DelayedVectorProxy.newInstance
(Class paramClass, Comparator paramComparator, boolean paramBoolean1, boolean paramBoolean2) ProxyCollection.newInstance
(Class elementType, Comparator comp, boolean trackChanges, boolean autoOff) Create a new instance of this proxy type.Modifier and TypeMethodDescriptionstatic boolean
ProxyCollections.addAll
(ProxyCollection coll, int index, Collection values) Override forList.addAll(int, Collection)
.static boolean
ProxyCollections.addAll
(ProxyCollection coll, Collection values) Override forCollection.addAll(java.util.Collection<? extends E>)
.static boolean
ProxyCollections.afterAdd
(ProxyCollection coll, Object value, boolean added) Call after invokingCollection.add(Object)
on super.static void
ProxyCollections.afterAddElement
(ProxyCollection coll, Object value) Call after invokingVector.addElement(Object)
on super.static void
ProxyCollections.afterAddLast
(ProxyCollection coll, Object value) Call after invokingLinkedList.addLast(Object)
on super.static Iterator
ProxyCollections.afterIterator
(ProxyCollection coll, Iterator itr) Wrap given iterator in a proxy.static ListIterator
ProxyCollections.afterListIterator
(ProxyCollection coll, int idx, ListIterator itr) Wrap given iterator in a proxy.static ListIterator
ProxyCollections.afterListIterator
(ProxyCollection coll, ListIterator itr) Wrap given iterator in a proxy.static boolean
ProxyCollections.afterOffer
(ProxyCollection coll, Object value, boolean added) Call after invokingQueue#offer(Object)
on super.static Object
ProxyCollections.afterPoll
(ProxyCollection coll, Object removed) Call after invokingQueue#poll
on super.static Object
ProxyCollections.afterRemove
(ProxyCollection coll, int index, Object removed) Call after invokingList.remove(int)
on super.static Object
ProxyCollections.afterRemove
(ProxyCollection coll, Object removed) Call after invokingQueue#remove
on super.static boolean
ProxyCollections.afterRemove
(ProxyCollection coll, Object o, boolean removed) Call after invokingCollection.remove(java.lang.Object)
on super.static boolean
ProxyCollections.afterRemoveElement
(ProxyCollection coll, Object o, boolean removed) Call after invokingVector.removeElement(java.lang.Object)
on super.static Object
ProxyCollections.afterRemoveFirst
(ProxyCollection coll, Object removed) Call after invokingLinkedList.removeFirst()
on super.static Object
ProxyCollections.afterRemoveLast
(ProxyCollection coll, Object removed) Call after invokingLinkedList.removeLast()
on super.static Object
ProxyCollections.afterSet
(ProxyCollection coll, int index, Object element, Object replaced) Call after invokingList.set(int, E)
on super.static Object
ProxyCollections.afterSetElementAt
(ProxyCollection coll, Object element, int index, Object replaced) Call after invokingVector.setElementAt(E, int)
on super.static void
ProxyCollections.beforeAdd
(ProxyCollection coll, int index, Object value) Call before invokingList.add(int,Object)
on super.static void
ProxyCollections.beforeAdd
(ProxyCollection coll, Object value) Call before invokingCollection.add(Object)
on super.static void
ProxyCollections.beforeAddElement
(ProxyCollection coll, Object value) Call before invokingVector.addElement(Object)
on super.static void
ProxyCollections.beforeAddFirst
(ProxyCollection coll, Object value) Call before invokingLinkedList.addFirst(Object)
on super.static void
ProxyCollections.beforeAddLast
(ProxyCollection coll, Object value) Call before invokingLinkedList.addLast(Object)
on super.static void
ProxyCollections.beforeClear
(ProxyCollection coll) Call before clearing collection.static void
ProxyCollections.beforeInsertElementAt
(ProxyCollection coll, Object value, int index) Call before invokingVector.insertElementAt(Object,int)
on super.static void
ProxyCollections.beforeOffer
(ProxyCollection coll, Object value) Call before invokingQueue#offer(Object)
on super.static void
ProxyCollections.beforePoll
(ProxyCollection coll) Call before invokingQueue#poll
on super.static void
ProxyCollections.beforeRemove
(ProxyCollection coll) Call before invokingQueue#remove
on super.static void
ProxyCollections.beforeRemove
(ProxyCollection coll, int index) Call before invokingList.remove(int)
on super.static void
ProxyCollections.beforeRemove
(ProxyCollection coll, Object o) Call before invokingCollection.remove(java.lang.Object)
on super.static void
ProxyCollections.beforeRemoveAllElements
(ProxyCollection coll) Call before clearing vector.static void
ProxyCollections.beforeRemoveElement
(ProxyCollection coll, Object o) Call before invokingVector.removeElement(java.lang.Object)
on super.static void
ProxyCollections.beforeRemoveElementAt
(ProxyCollection coll, int index) Call before invokingVector.removeElementAt(int)
on super.static void
ProxyCollections.beforeRemoveFirst
(ProxyCollection coll) Call before invokingLinkedList.removeFirst()
on super.static void
ProxyCollections.beforeRemoveLast
(ProxyCollection coll) Call after invokingLinkedList.removeLast()
on super.static void
ProxyCollections.beforeSet
(ProxyCollection coll, int index, Object element) Call before invokingList.set(int, E)
on super.static void
ProxyCollections.beforeSetElementAt
(ProxyCollection coll, Object element, int index) Call before invokingVector.setElementAt(E, int)
on super.static boolean
ProxyCollections.isDelayed
(ProxyCollection proxy) static void
ProxyCollections.loadCollection
(ProxyCollection proxy) static void
ProxyCollections.loadCollection
(ProxyCollection proxy, boolean detaching) static boolean
ProxyCollections.removeAll
(ProxyCollection coll, Collection<?> vals) Override forCollection.removeAll(java.util.Collection<?>)
.static boolean
ProxyCollections.retainAll
(ProxyCollection coll, Collection<?> vals) Override forCollection.retainAll(java.util.Collection<?>)
.