Object remove(int index)
Overrides:
Throws:
boolean remove(Object o)
Overrides:
_INSERT_METHOD_SIGNATURE_HERE_
Description:
Implements interface method List.remove.
remove(int index) method:
Removes the element at the specified position in this Vector. shifts any subsequent elements to the left (subtracts one from their indices). Returns the element that was removed from the Vector.
remove(Object o) method:
Removes the first occurrence of the specified element in this Vector If the Vector does not contain the element, it is unchanged. More formally, removes the element with the lowest index i such that (o==null ? get(i)==null : o.equals(get(i))) (if such an element exists).