La clase java.util.EnumSet.noneOf(
Sintaxis:
public static <E extends Enum<E>> EnumSet<E> noneOf(Class<E> elementType)
Parámetros: el método acepta un parámetro elementType de tipo de elemento y se refiere al objeto de clase del tipo de elemento para este conjunto de enumeración.
Valor devuelto: el método no devuelve ningún valor.
Excepciones: el método genera NullPointerException si el tipo de elemento es nulo.
Los siguientes programas ilustran el funcionamiento del método Java.util.EnumSet.noneOf():
Programa 1:
// Java program to demonstrate noneof() method import java.util.*; // Creating an enum of GFG type enum GFG { Welcome, To, The, World, of, Geeks } ; public class Enum_Set_Demo { public static void main(String[] args) { // Creating an empty EnumSet // Getting all elements from GFG EnumSet<GFG> e_set = EnumSet.allOf(GFG.class); // Displaying the initial EnumSet System.out.println("The first set is: " + e_set); // Creating another empty set EnumSet<GFG> other_set = EnumSet.noneOf(GFG.class); // Displaying the new set System.out.println("The other set is: " + other_set); } }
Producción:
The first set is: [Welcome, To, The, World, of, Geeks] The other set is: []
Programa 2:
// Java program to demonstrate copyOf() method import java.util.*; // Creating an enum of CARS type enum CARS { RANGE_ROVER, MUSTANG, CAMARO, AUDI, BMW } ; public class Enum_Set_Demo { public static void main(String[] args) { // Creating an empty EnumSet // Getting all elements from CARS EnumSet<CARS> e_set = EnumSet.allOf(CARS.class); // Displaying the initial EnumSet System.out.println("The first set is: " + e_set); // Creating another empty set EnumSet<CARS> other_set = EnumSet.noneOf(CARS.class); // Displaying the new set System.out.println("The other set is: " + other_set); } }
Producción:
The first set is: [RANGE_ROVER, MUSTANG, CAMARO, AUDI, BMW] The other set is: []
Publicación traducida automáticamente
Artículo escrito por Chinmoy Lenka y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA