Searched defs:List (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/java/java/util/
H A DList.java22 * A {@code List} is a collection which maintains an ordering for its elements. Every
23 * element in the {@code List} has an index. Each element can thus be accessed by its
24 * index, with the first index being zero. Normally, {@code List}s allow duplicate
27 public interface List<E> extends Collection<E> { interface in inherits:Collection
29 * Inserts the specified object into this {@code List} at the specified location.
31 * location. If the location is equal to the size of this {@code List}, the object
33 * {@code List}, then all elements beyond the specified location are moved by one
34 * position towards the end of the {@code List}.
41 * if adding to this {@code List} is not supported.
44 * {@code List}
[all...]

Completed in 43 milliseconds