Vector.elements() has the following syntax.
public Enumeration<E> elements()
In the following code shows how to use Vector.elements() method.
import java.util.Enumeration; import java.util.Vector; /*ww w. j av a2 s . co m*/ public class Main { public static void main(String[] args) { Vector<Integer> vec = new Vector<Integer> (4); vec.add(4); vec.add(3); vec.add(2); vec.add(1); // adding elements into the enumeration Enumeration e=vec.elements(); // let us print all the elements available in enumeration System.out.println("Numbers in the enumeration are :- "); while (e.hasMoreElements()) { System.out.println("Number = " + e.nextElement()); } } }
The code above generates the following result.