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:
  • Constructor Details

    • ListProxy

      public ListProxy()
    • ListProxy

      public ListProxy(Initializor<List<U>> initializor)
  • Method Details

    • addAll

      public boolean addAll(int index, Collection<? extends U> c)
      Specified by:
      addAll in interface List<U>
    • get

      public U get(int index)
      Specified by:
      get in interface List<U>
    • set

      public U set(int index, U element)
      Specified by:
      set in interface List<U>
    • add

      public void add(int index, U element)
      Specified by:
      add in interface List<U>
    • remove

      public U remove(int index)
      Specified by:
      remove in interface List<U>
    • indexOf

      public int indexOf(Object o)
      Specified by:
      indexOf in interface List<U>
    • lastIndexOf

      public int lastIndexOf(Object o)
      Specified by:
      lastIndexOf in interface List<U>
    • listIterator

      public ListIterator<U> listIterator()
      Specified by:
      listIterator in interface List<U>
    • listIterator

      public ListIterator<U> listIterator(int index)
      Specified by:
      listIterator in interface List<U>
    • subList

      public List<U> subList(int fromIndex, int toIndex)
      Specified by:
      subList in interface List<U>