Package java.util
The Vector class implements anarray of objects that can change in size. Like an array, it contains components that can be accessed using an integer index. However, the size of a Vector can grow or shrink as needed to accommodate adding and removing items after the Vector has been created.
Each vector tries to optimize storage management by maintaining a capacity and a capacityIncrement. The capacity is always at least as large as the vector size; it is usually larger because as components are added to the vector, the vector's storage increases in chunks the size of capacityIncrement. An application can increase the capacity of a vector before inserting a large number of components; this reduces the amount of incremental reallocation.
Public Constructors
Public Methods
Methods inherited from java.util.AbstractList
_INSERT_METHOD_ENTRY_HERE_
Methods inherited from java.util.AbstractCollection
_INSERT_METHOD_ENTRY_HERE_
Methods inherited from java.lang.Object
_INSERT_INHERITED_METHOD_ENTRY_HERE_
_INSERT_FIELDS_ENTRY_HERE_