org.apache.commons.collections.list
Class AbstractLinkedList.LinkedSubList<E>
java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractList<E>
org.apache.commons.collections.list.AbstractLinkedList.LinkedSubList<E>
- All Implemented Interfaces:
- Iterable<E>, Collection<E>, List<E>
- Enclosing class:
- AbstractLinkedList<E>
protected static class AbstractLinkedList.LinkedSubList<E>
- extends AbstractList<E>
The sublist implementation for AbstractLinkedList.
AbstractLinkedList.LinkedSubList
protected AbstractLinkedList.LinkedSubList(AbstractLinkedList<E> parent,
int fromIndex,
int toIndex)
size
public int size()
- Specified by:
size
in interface Collection<E>
- Specified by:
size
in interface List<E>
- Specified by:
size
in class AbstractCollection<E>
get
public E get(int index)
- Specified by:
get
in interface List<E>
- Specified by:
get
in class AbstractList<E>
add
public void add(int index,
E obj)
- Specified by:
add
in interface List<E>
- Overrides:
add
in class AbstractList<E>
remove
public E remove(int index)
- Specified by:
remove
in interface List<E>
- Overrides:
remove
in class AbstractList<E>
addAll
public boolean addAll(Collection<? extends E> coll)
- Specified by:
addAll
in interface Collection<E>
- Specified by:
addAll
in interface List<E>
- Overrides:
addAll
in class AbstractCollection<E>
addAll
public boolean addAll(int index,
Collection<? extends E> coll)
- Specified by:
addAll
in interface List<E>
- Overrides:
addAll
in class AbstractList<E>
set
public E set(int index,
E obj)
- Specified by:
set
in interface List<E>
- Overrides:
set
in class AbstractList<E>
clear
public void clear()
- Specified by:
clear
in interface Collection<E>
- Specified by:
clear
in interface List<E>
- Overrides:
clear
in class AbstractList<E>
iterator
public Iterator<E> iterator()
- Specified by:
iterator
in interface Iterable<E>
- Specified by:
iterator
in interface Collection<E>
- Specified by:
iterator
in interface List<E>
- Overrides:
iterator
in class AbstractList<E>
listIterator
public ListIterator<E> listIterator(int index)
- Specified by:
listIterator
in interface List<E>
- Overrides:
listIterator
in class AbstractList<E>
subList
public List subList(int fromIndexInclusive,
int toIndexExclusive)
- Specified by:
subList
in interface List<E>
- Overrides:
subList
in class AbstractList<E>
rangeCheck
protected void rangeCheck(int index,
int beyond)
checkModCount
protected void checkModCount()
Copyright © 2005-2005 Apache Software Foundation, Matt Hall, John Watkinson. All Rights Reserved.