What\'s the best way to convert an Object array to a Vector?
JDE < 1.5
public Vector getListElements() { Vector myVector = this.elements; retu
Copy the array elements to the Vector, or
Vector
Use Arrays.asList(...) to return a List, which isn't exactly a Vector, but you should be coding the List interface anyway.
Arrays.asList(...)
List