VOOZH about

URL: https://www.geeksforgeeks.org/java/vector-elements-method-in-java/

⇱ Java Vector elements() Method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Java Vector elements() Method

Last Updated : 11 Jul, 2025

In Java, the elements() method is used to return an enumeration of the elements in the Vector. This method allows you to iterate over the elements of a Vector using an Enumeration, which provides methods for checking if there are more elements and retrieving the next element.

Example 1: Below is the Java program demonstrating the use of the elements() method with Integer type.


Output
[10, 20, 30, 40, 50]
The enumeration of values are: 
10
20
30
40
50

Syntax of Vector elements() Method

public Enumeration<E> elements()

Return value: It returns an enumeration of the values in the Vector. Where E is the type of element in the Vector. 

Example 2: Below is the Java program demonstrating the use of the elements() method with String type.


Output
[Geeks, for, Geeks]
The enumeration of values are: 
Geeks
for
Geeks
Comment