static L newSubList(L l, int startIndex, int endIndex) { ret cloneList(subList(l, startIndex, endIndex)); } static L newSubList(L l, int startIndex) { ret cloneList(subList(l, startIndex)); }