


It is used to replace the element at the specified position in the vector with the specified element. It is used to retain only that element in the vector which is contained in the specified collection. It is used to replace each element of the list with the result of applying the operator to that element. It is used to delete all of the elements from the vector whose index is between fromIndex, inclusive and toIndex, exclusive. It is used to remove all of the elements of the collection that satisfy the given predicate. It is used to delete the component at the specified index. It is used to remove the first (lowest-indexed) occurrence of the argument from the vector. It is used to remove all elements from the vector and set the size of the vector to zero. It is used to delete all the elements from the vector that are present in the specified collection. If the vector does not contain the element, it is unchanged. It is used to remove the specified element from the vector. It is used to get a list iterator over the elements in the list in proper sequence. It returns -1 if the vector does not contain the element. It is used to get the index of the last occurrence of the specified element in the vector. It is used to get the last component of the vector. It is used to get an iterator over the elements in the list in proper sequence. It is used to check if this vector has no components. It is used to insert the specified object as a component in the given vector at the specified index. It is used to get the index of the first occurrence of the specified element in the vector.
CRBATA VECTR CODE
It is used to get the hash code value of a vector. It is used to get an element at the specified position in the vector. It is used to perform the given action for each element of the Iterable until all elements have been processed or the action throws an exception. It is used to get the first component of the vector. It is used to compare the specified object with the vector for equality. It ensures that the vector can hold at least the number of components specified by the minimum capacity argument. It is used to increase the capacity of the vector which is in use, if necessary. It returns an enumeration of the components of a vector. It is used to get the component at the specified index. It is used to copy the components of the vector into the specified array. It returns true if the vector contains all of the elements in the specified collection. It returns true if the vector contains the specified element. It is used to delete all of the elements from this vector.

It is used to get the current capacity of this vector. It is used to append the specified component to the end of this vector. It is used to append all of the elements in the specified collection to the end of this Vector. It is used to append the specified element in the given vector. The following are the list of Vector class methods: SN It constructs a vector that contains the elements of a collection c. It constructs an empty vector with the specified initial capacity and capacity increment. Vector(int initialCapacity, int capacityIncrement) It constructs an empty vector with the specified initial capacity and with its capacity increment equal to zero. It constructs an empty vector with the default size as 10. Vector class supports four types of constructors.
