| Added Methods |
int indexOfSubList(List, List)
|
Returns the starting position of the first occurrence of the specified target list within the specified source list or -1 if there is no such occurrence. |
int lastIndexOfSubList(List, List)
|
Returns the starting position of the last occurrence of the specified target list within the specified source list or -1 if there is no such occurrence. |
ArrayList list(Enumeration)
|
Returns an array list containing the elements returned by the specified enumeration in the order they are returned by the enumeration. |
boolean replaceAll(List, Object, Object)
|
Replaces all occurrences of one specified value in a list with another. |
void rotate(List, int)
|
Rotates the elements in the specified list by the specified distance. |
void swap(List, int, int)
|
Swaps the elements at the specified positions in the specified list. |