Class ListProxy<U>
- java.lang.Object
-
- org.hibernate.envers.internal.entities.mapper.relation.lazy.proxy.CollectionProxy<U,List<U>>
-
- org.hibernate.envers.internal.entities.mapper.relation.lazy.proxy.ListProxy<U>
-
- All Implemented Interfaces:
Serializable,Iterable<U>,Collection<U>,List<U>,LazyInitializable
public class ListProxy<U> extends CollectionProxy<U,List<U>> implements List<U>
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.hibernate.envers.internal.entities.mapper.relation.lazy.proxy.CollectionProxy
delegate
-
-
Constructor Summary
Constructors Constructor Description ListProxy()ListProxy(Initializor<List<U>> initializor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(int index, U element)booleanaddAll(int index, Collection<? extends U> c)Uget(int index)intindexOf(Object o)intlastIndexOf(Object o)ListIterator<U>listIterator()ListIterator<U>listIterator(int index)Uremove(int index)Uset(int index, U element)List<U>subList(int fromIndex, int toIndex)-
Methods inherited from class org.hibernate.envers.internal.entities.mapper.relation.lazy.proxy.CollectionProxy
add, addAll, checkInit, clear, contains, containsAll, equals, forceInitialization, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray, toString, wasInitialized
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
-
-
-
Constructor Detail
-
ListProxy
public ListProxy()
-
ListProxy
public ListProxy(Initializor<List<U>> initializor)
-
-
Method Detail
-
addAll
public boolean addAll(int index, Collection<? extends U> c)
-
lastIndexOf
public int lastIndexOf(Object o)
- Specified by:
lastIndexOfin interfaceList<U>
-
listIterator
public ListIterator<U> listIterator()
- Specified by:
listIteratorin interfaceList<U>
-
listIterator
public ListIterator<U> listIterator(int index)
- Specified by:
listIteratorin interfaceList<U>
-
-