![]() |
VOOZH | about |
The elements() method of Properties class is used to get the enumeration of this Properties object. It can be further used to retrieve the elements sequentially using this Enumeration received.
Syntax:
public Enumeration elements()
Parameters: This method do not accepts any parameters.
Returns: This method returns an Enumeration of the values in this Properties object.
Below programs illustrate the elements() method:
Program 1:
Current Properties: {Book=500, Mobile=5000, Pen=10, Clothes=400}
The enumeration of values are:
500
5000
10
400Program 2:
Current Properties: {3=1000RS, 2=500RS, 1=100RS}
The enumeration of values are:
1000RS
500RS
100RSReferences: https://docs.oracle.com/javase/9/docs/api/java/util/Properties.html#elements--