Here you can find the source of reverseVector(Vector
public static Vector<String> reverseVector(Vector<String> rc)
//package com.java2s; //License from project: Open Source License import java.util.*; public class Main { public static Vector<String> reverseVector(Vector<String> rc) { Collections.reverse(rc);/*from w w w . java 2 s.c o m*/ return rc; } }