List subList(int fromIndex, int toIndex)
Overrides:
_INSERT_METHOD_SIGNATURE_HERE_
Description:
Implements interface method List.subList.
Returns a view of the portion of this List between fromIndex, inclusive, and toIndex (exluding toIndex). If fromIndex and ToIndex are equal, the returned List is empty. The returned List is backed by this List, so changes in the returned List are reflected in this List, and vice-versa.