Example usage for Java java.util Vector.Builder fields, constructors, methods, implement or subclass
The text is from its open source code.
boolean | add(E e) Appends the specified element to the end of this Vector. |
void | add(int index, E element) Inserts the specified element at the specified position in this Vector. |
boolean | addAll(Collection extends E> c) Appends all of the elements in the specified Collection to the end of this Vector, in the order that they are returned by the specified Collection's Iterator. |
E | set(int index, E element) Replaces the element at the specified position in this Vector with the specified element. |