El método de elements() de la clase de propiedades se utiliza para obtener la enumeración de este objeto de propiedades. Puede usarse además para recuperar los elementos secuencialmente usando esta Enumeración recibida.
Sintaxis:
public Enumeration elements()
Parámetros: Este método no acepta ningún parámetro.
Devoluciones: este método devuelve una enumeración de los valores en este objeto de propiedades.
Los siguientes programas ilustran el método de elements():
Programa 1:
Java
// Java program to demonstrate // elements() method. import java.util.*; public class GFG { // Main method public static void main(String[] args) { // Create a properties and add some values Properties properties = new Properties(); properties.put("Pen", 10); properties.put("Book", 500); properties.put("Clothes", 400); properties.put("Mobile", 5000); // Print Properties details System.out.println("Current Properties: " + properties.toString()); // Creating an empty enumeration to store Enumeration enu = properties.elements(); System.out.println("The enumeration of values are:"); // Displaying the Enumeration while (enu.hasMoreElements()) { System.out.println(enu.nextElement()); } } }
Producción:
Current Properties: {Book=500, Mobile=5000, Pen=10, Clothes=400} The enumeration of values are: 500 5000 10 400
Programa 2:
Java
// Java program to demonstrate // elements() method. import java.util.*; public class GFG { // Main method public static void main(String[] args) { // Create a properties and add some values Properties properties = new Properties(); properties.put(1, "100RS"); properties.put(2, "500RS"); properties.put(3, "1000RS"); // print Properties details System.out.println("Current Properties: " + properties.toString()); // Creating an empty enumeration to store Enumeration enu = properties.elements(); System.out.println("The enumeration of values are:"); // Displaying the Enumeration while (enu.hasMoreElements()) { System.out.println(enu.nextElement()); } } }
Producción:
Current Properties: {3=1000RS, 2=500RS, 1=100RS} The enumeration of values are: 1000RS 500RS 100RS
Referencias: https://docs.oracle.com/javase/9/docs/api/java/util/Properties.html#elements–
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA