Class SumoLinkList

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void add​(int index, SumoLink element)  
      boolean add​(SumoLink element)  
      boolean addAll​(int index, java.util.Collection<? extends SumoLink> elements)  
      boolean addAll​(java.util.Collection<? extends SumoLink> elements)  
      void clear()  
      boolean contains​(java.lang.Object element)  
      boolean containsAll​(java.util.Collection<?> elements)  
      SumoLink get​(int index)  
      int indexOf​(java.lang.Object element)  
      boolean isEmpty()  
      java.util.Iterator<SumoLink> iterator()  
      int lastIndexOf​(java.lang.Object element)  
      java.util.ListIterator<SumoLink> listIterator()  
      java.util.ListIterator<SumoLink> listIterator​(int index)  
      SumoLink remove​(int index)  
      boolean remove​(java.lang.Object element)  
      boolean removeAll​(java.util.Collection<?> elements)  
      boolean retainAll​(java.util.Collection<?> elements)  
      SumoLink set​(int index, SumoLink element)  
      int size()  
      java.util.List<SumoLink> subList​(int from, int to)  
      java.lang.Object[] toArray()  
      <T> T[] toArray​(T[] element)  
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • Methods inherited from interface java.util.Collection

        parallelStream, removeIf, stream, toArray
      • Methods inherited from interface java.lang.Iterable

        forEach
      • Methods inherited from interface java.util.List

        equals, hashCode, replaceAll, sort, spliterator
    • Constructor Detail

      • SumoLinkList

        public SumoLinkList()
      • SumoLinkList

        public SumoLinkList​(java.util.List<SumoLink> list)
    • Method Detail

      • add

        public void add​(int index,
                        SumoLink element)
        Specified by:
        add in interface java.util.List<SumoLink>
      • addAll

        public boolean addAll​(java.util.Collection<? extends SumoLink> elements)
        Specified by:
        addAll in interface java.util.Collection<SumoLink>
        Specified by:
        addAll in interface java.util.List<SumoLink>
      • addAll

        public boolean addAll​(int index,
                              java.util.Collection<? extends SumoLink> elements)
        Specified by:
        addAll in interface java.util.List<SumoLink>
      • clear

        public void clear()
        Specified by:
        clear in interface java.util.Collection<SumoLink>
        Specified by:
        clear in interface java.util.List<SumoLink>
      • contains

        public boolean contains​(java.lang.Object element)
        Specified by:
        contains in interface java.util.Collection<SumoLink>
        Specified by:
        contains in interface java.util.List<SumoLink>
      • containsAll

        public boolean containsAll​(java.util.Collection<?> elements)
        Specified by:
        containsAll in interface java.util.Collection<SumoLink>
        Specified by:
        containsAll in interface java.util.List<SumoLink>
      • get

        public SumoLink get​(int index)
        Specified by:
        get in interface java.util.List<SumoLink>
      • indexOf

        public int indexOf​(java.lang.Object element)
        Specified by:
        indexOf in interface java.util.List<SumoLink>
      • isEmpty

        public boolean isEmpty()
        Specified by:
        isEmpty in interface java.util.Collection<SumoLink>
        Specified by:
        isEmpty in interface java.util.List<SumoLink>
      • lastIndexOf

        public int lastIndexOf​(java.lang.Object element)
        Specified by:
        lastIndexOf in interface java.util.List<SumoLink>
      • listIterator

        public java.util.ListIterator<SumoLink> listIterator()
        Specified by:
        listIterator in interface java.util.List<SumoLink>
      • listIterator

        public java.util.ListIterator<SumoLink> listIterator​(int index)
        Specified by:
        listIterator in interface java.util.List<SumoLink>
      • remove

        public boolean remove​(java.lang.Object element)
        Specified by:
        remove in interface java.util.Collection<SumoLink>
        Specified by:
        remove in interface java.util.List<SumoLink>
      • remove

        public SumoLink remove​(int index)
        Specified by:
        remove in interface java.util.List<SumoLink>
      • removeAll

        public boolean removeAll​(java.util.Collection<?> elements)
        Specified by:
        removeAll in interface java.util.Collection<SumoLink>
        Specified by:
        removeAll in interface java.util.List<SumoLink>
      • retainAll

        public boolean retainAll​(java.util.Collection<?> elements)
        Specified by:
        retainAll in interface java.util.Collection<SumoLink>
        Specified by:
        retainAll in interface java.util.List<SumoLink>
      • size

        public int size()
        Specified by:
        size in interface java.util.Collection<SumoLink>
        Specified by:
        size in interface java.util.List<SumoLink>
      • subList

        public java.util.List<SumoLink> subList​(int from,
                                                int to)
        Specified by:
        subList in interface java.util.List<SumoLink>
      • toArray

        public java.lang.Object[] toArray()
        Specified by:
        toArray in interface java.util.Collection<SumoLink>
        Specified by:
        toArray in interface java.util.List<SumoLink>
      • toArray

        public <T> T[] toArray​(T[] element)
        Specified by:
        toArray in interface java.util.Collection<SumoLink>
        Specified by:
        toArray in interface java.util.List<SumoLink>
      • add

        public boolean add​(SumoLink element)
        Specified by:
        add in interface java.util.Collection<SumoLink>
        Specified by:
        add in interface java.util.List<SumoLink>
      • iterator

        public java.util.Iterator<SumoLink> iterator()
        Specified by:
        iterator in interface java.util.Collection<SumoLink>
        Specified by:
        iterator in interface java.lang.Iterable<SumoLink>
        Specified by:
        iterator in interface java.util.List<SumoLink>
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object