Example usage for Java java.util AbstractList fields, constructors, methods, implement or subclass
The text is from its open source code.
AbstractList() Sole constructor. |
boolean | add(E e) Appends the specified element to the end of this list (optional operation). |
E | get(int index) |
boolean | isEmpty() Returns true if this list contains no elements. |
ListIterator | listIterator() |
E | set(int index, E element) |
int | size() Returns the number of elements in this list. |
String | toString() Returns a string representation of the object. |