Vector.removeElementAt

Vector.removeElementAt

Class Overview | Class Members | This Package | All Packages

Syntax
public final synchronized void removeElementAt( int index )
Parameters
index
the index of the object to remove.
Description
Deletes the component at the specified index. Each component in this vector with an index greater or equal to the specified index is shifted downward to have an index one smaller than the value it had previously.

The index must be a value greater than or equal to 0 and less than the current size of the vector.

Exceptions
ArrayIndexOutOfBoundsException if the index was invalid.
See Also
size