Returns a List of the specified portion of this List from the given start index to the end index minus one. The returned List is backed by this List so changes to it are reflected by the other. @param start the index at which to start the sublist. @param e
(int start, int end)
| 327 | * size()} |
| 328 | */ |
| 329 | public List<E> subList(int start, int end); |
| 330 | |
| 331 | /** |
| 332 | * Returns an array containing all elements contained in this {@code List}. |