El método Java.util.EnumMap.values() en Java se usa para crear una colección a partir de los valores del mapa. Básicamente, devuelve una vista de colección de los valores en EnumMap.
Sintaxis:
EnumMap.values()
Parámetros: El método no acepta ningún argumento.
Valores devueltos: el método devuelve la vista de colección de los valores asignados.
Los siguientes programas ilustran el funcionamiento de la función Java.util.EnumMap.values():
Programa 1:
// Java program to demonstrate values() import java.util.*; // An enum of geeksforgeeks public enum gfg { India_today, United_States_today } ; class Enum_demo { public static void main(String[] args) { EnumMap<gfg, Integer> mp = new EnumMap<gfg, Integer>(gfg.class); // Values are associated mp.put(gfg.India_today, 69); mp.put(gfg.United_States_today, 1073); // Prints the map System.out.println("The EnumMap: " + mp); // Retrieving the collection view of the map Collection<Integer> view = mp.values(); // Prints the result System.out.println("Collection view of map: " + view); } }
Producción:
The EnumMap: {India_today=69, United_States_today=1073} Collection view of map: [69, 1073]
Programa 2:
// Java program to demonstrate the working of values() import java.util.*; // An enum of geeksforgeeks public enum gfg { India_today, United_States_today, Canada_today } ; class Enum_demo { public static void main(String[] args) { EnumMap<gfg, Integer> mp = new EnumMap<gfg, Integer>(gfg.class); // Values are associated mp.put(gfg.India_today, 69); mp.put(gfg.United_States_today, 1073); mp.put(gfg.Canada_today, 1837); // Prints the map System.out.println("The EnumMap: " + mp); // Retrieving the collection view of the map Collection<Integer> view = mp.values(); // Prints the result System.out.println("Collection view of map: " + view); } }
Producción:
The EnumMap: {India_today=69, United_States_today=1073, Canada_today=1837} Collection view of map: [69, 1073, 1837]