Java Vector elements() Method Last Updated : 11 Jul, 2025 Comments Improve Suggest changes 5 Likes Like Report 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. Java // Java Program to Demonstrate the // use of elements() with Integer type import java.util.*; public class Geeks { public static void main(String[] args) { // Creating an empty Vector Vector<Integer> v = new Vector<>(); // Inserting elements into the table v.add(10); v.add(20); v.add(30); v.add(40); v.add(50); // Displaying the Vector System.out.println("" + v); // Creating an empty enumeration to store Enumeration e = v.elements(); System.out.println( "The enumeration of values are: "); // Displaying the Enumeration while (e.hasMoreElements()) { System.out.println(e.nextElement()); } } } Output[10, 20, 30, 40, 50] The enumeration of values are: 10 20 30 40 50 Syntax of Vector elements() Methodpublic 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. Java // Java Program to Demonstrate the // use of elements() with String type import java.util.*; public class Geeks { public static void main(String[] args) { // Creating an empty Vector Vector<String> v = new Vector<>(); // Inserting elements into the table v.add("Geeks"); v.add("for"); v.add("Geeks"); // Displaying the Vector System.out.println("" + v); // Creating an empty enumeration to store Enumeration e = v.elements(); System.out.println( "The enumeration of values are: "); // Displaying the Enumeration while (e.hasMoreElements()) { System.out.println(e.nextElement()); } } } Output[Geeks, for, Geeks] The enumeration of values are: Geeks for Geeks Comment K kundankumarjha Follow 5 Improve K kundankumarjha Follow 5 Improve Article Tags : Misc Java Java-Collections Java - util package Java-Functions Java-Vector +2 More Explore Java BasicsIntroduction to Java3 min readJava Programming Basics9 min readJava Methods6 min readAccess Modifiers in Java4 min readArrays in Java7 min readJava Strings8 min readRegular Expressions in Java3 min readOOP & InterfacesClasses and Objects in Java9 min readAccess Modifiers in Java4 min readJava Constructors4 min readJava OOP(Object Oriented Programming) Concepts10 min readJava Packages7 min readJava Interface7 min readCollectionsCollections in Java12 min readCollections Class in Java13 min readCollection Interface in Java4 min readIterator in Java5 min readJava Comparator Interface6 min readException HandlingJava Exception Handling6 min readJava Try Catch Block4 min readJava final, finally and finalize4 min readChained Exceptions in Java3 min readNull Pointer Exception in Java5 min readException Handling with Method Overriding in Java4 min readJava AdvancedJava Multithreading Tutorial3 min readSynchronization in Java10 min readFile Handling in Java4 min readJava Method References9 min readJava 8 Stream Tutorial7 min readJava Networking6 min readJDBC Tutorial5 min readJava Memory Management4 min readGarbage Collection in Java6 min readMemory Leaks in Java3 min readPractice JavaJava Interview Questions and Answers15+ min readJava Programs - Java Programming Examples7 min readJava Exercises - Basic to Advanced Java Practice Programs with Solutions5 min readJava Quiz1 min readJava Project Ideas For Beginners and Advanced15+ min read Like