Package de.tudresden.sumo.objects
Class SumoLinkList
- java.lang.Object
-
- de.tudresden.sumo.objects.SumoLinkList
-
- All Implemented Interfaces:
SumoObject
,Serializable
,Iterable<SumoLink>
,Collection<SumoLink>
,List<SumoLink>
public class SumoLinkList extends Object implements List<SumoLink>, Serializable, SumoObject
- Author:
- Mario Krumnow
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SumoLinkList()
SumoLinkList(List<SumoLink> list)
-
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, Collection<? extends SumoLink> elements)
boolean
addAll(Collection<? extends SumoLink> elements)
void
clear()
boolean
contains(Object element)
boolean
containsAll(Collection<?> elements)
SumoLink
get(int index)
int
indexOf(Object element)
boolean
isEmpty()
Iterator<SumoLink>
iterator()
int
lastIndexOf(Object element)
ListIterator<SumoLink>
listIterator()
ListIterator<SumoLink>
listIterator(int index)
SumoLink
remove(int index)
boolean
remove(Object element)
boolean
removeAll(Collection<?> elements)
boolean
retainAll(Collection<?> elements)
SumoLink
set(int index, SumoLink element)
int
size()
List<SumoLink>
subList(int from, int to)
Object[]
toArray()
<T> T[]
toArray(T[] element)
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.util.List
equals, hashCode, replaceAll, sort, spliterator
-
-
-
-
Method Detail
-
addAll
public boolean addAll(Collection<? extends SumoLink> elements)
-
addAll
public boolean addAll(int index, Collection<? extends SumoLink> elements)
-
clear
public void clear()
-
contains
public boolean contains(Object element)
-
containsAll
public boolean containsAll(Collection<?> elements)
- Specified by:
containsAll
in interfaceCollection<SumoLink>
- Specified by:
containsAll
in interfaceList<SumoLink>
-
isEmpty
public boolean isEmpty()
-
lastIndexOf
public int lastIndexOf(Object element)
- Specified by:
lastIndexOf
in interfaceList<SumoLink>
-
listIterator
public ListIterator<SumoLink> listIterator()
- Specified by:
listIterator
in interfaceList<SumoLink>
-
listIterator
public ListIterator<SumoLink> listIterator(int index)
- Specified by:
listIterator
in interfaceList<SumoLink>
-
remove
public boolean remove(Object element)
-
removeAll
public boolean removeAll(Collection<?> elements)
-
retainAll
public boolean retainAll(Collection<?> elements)
-
size
public int size()
-
toArray
public Object[] toArray()
-
toArray
public <T> T[] toArray(T[] element)
-
add
public boolean add(SumoLink element)
-
-