Class ListProxy<U>

    • Constructor Detail

      • ListProxy

        public ListProxy()
    • Method Detail

      • 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>
      • subList

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