void |
TwoSidedList.add(int ind,
E obj,
TwoSidedList.Direction dir) |
Inserts obj at the specified position ind
in this list (optional operation).
|
boolean |
TwoSidedList.addAll(int ind,
java.util.Collection<? extends E> coll,
TwoSidedList.Direction dir) |
Inserts all of the elements in coll into this list
at the specified position (optional operation).
|
private void |
TwoSidedList.checkRange(int ind,
TwoSidedList.Direction dir) |
Checks whether index ind is in range
and throws an appropriate exception if not.
|
E |
TwoSidedList.remove(int ind,
TwoSidedList.Direction dir) |
Removes the element at the specified position in this list
(optional operation).
|
boolean |
TwoSidedList.removeAll(java.util.Collection<?> coll,
TwoSidedList.Direction dir) |
Removes from this list all of its elements
that are contained in coll (optional operation).
|
boolean |
TwoSidedList.retainAll(java.util.Collection<?> coll,
TwoSidedList.Direction dir) |
Retains only the elements in this list
that are contained in coll (optional operation).
|