Collection Java Book

int capacity()
Returns the current capacity of this vector.
void ensureCapacity(int minCapacity)
Increases the capacity of this vector, if necessary, to ensure that it can hold at least the number of components specified by the minimum capacity argument.
void setSize(int newSize)
Sets the size of this vector.
int size()
Returns the number of components in this vector.
void trimToSize()
Trims the capacity of this vector to be the vector's current size.