java > java.util > java.util.abstractlist >

Class: java.util.AbstractList
    java.lang.Object
       java.util.AbstractCollection
               java.util.AbstractList


public abstract class AbstractList extends AbstractCollection implements List


FIELDS:
protected int modCount

CONSTRUCTORS:
protected AbstractList()


METHODS:
public void add(int index, Object element)
Throws: UnsupportedOperationException
Throws: ClassCastException
Throws: NullPointerException
Throws: IllegalArgumentException
Throws: IndexOutOfBoundsException

public boolean add(Object e)
Throws: UnsupportedOperationException
Throws: ClassCastException
Throws: NullPointerException
Throws: IllegalArgumentException
Overrides: AbstractCollection

public boolean addAll(int index, Collection c)
Throws: UnsupportedOperationException
Throws: ClassCastException
Throws: NullPointerException
Throws: IllegalArgumentException
Throws: IndexOutOfBoundsException

public void clear()
Throws: UnsupportedOperationException
Overrides: AbstractCollection

public boolean equals(Object o)
Overrides: Object

public abstract Object get(int index)
Throws: IndexOutOfBoundsException

public int hashCode()
Overrides: Object

public int indexOf(Object o)
Throws: ClassCastException
Throws: NullPointerException

public Iterator iterator()
Overrides: AbstractCollection

public int lastIndexOf(Object o)
Throws: ClassCastException
Throws: NullPointerException

public ListIterator listIterator()

public ListIterator listIterator(int index)
Throws: IndexOutOfBoundsException

public Object remove(int index)
Throws: UnsupportedOperationException
Throws: IndexOutOfBoundsException

protected void removeRange(int fromIndex, int toIndex)

public Object set(int index, Object element)
Throws: UnsupportedOperationException
Throws: ClassCastException
Throws: NullPointerException
Throws: IllegalArgumentException
Throws: IndexOutOfBoundsException

public List subList(int fromIndex, int toIndex)
Throws: IndexOutOfBoundsException
Throws: IllegalArgumentException


INHERITED METHODS:
iterator(), size(), isEmpty(), contains(java.lang.Object), toArray(), toArray(java.lang.Object[]), add(java.lang.Object), remove(java.lang.Object), containsAll(java.util.Collection), addAll(java.util.Collection), removeAll(java.util.Collection), retainAll(java.util.Collection), clear(), toString(), getClass(), hashCode(), equals(java.lang.Object), clone(), toString(), notify(), notifyAll(), wait(long), wait(long, int), wait(), finalize(),

SUBCLASSES:
AbstractSequentialList, ArrayList, Vector,





Yazilar kaynak gosterilmeden kopyalanamaz © www.kodcu.net