![]() |
VOOZH | about |
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.
[10, 20, 30, 40, 50] The enumeration of values are: 10 20 30 40 50
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.
[Geeks, for, Geeks] The enumeration of values are: Geeks for Geeks