Java中的 EnumSet allof() 方法
Java.util.EnumSet.allOf(类
句法:
public static > EnumSet allOf(Class elementType)
参数:该方法接受一个元素类型的参数elementType ,并引用将其元素存储到集合中的类对象。
返回值:该方法不返回任何值。
异常:如果elementType为 Null,该方法将抛出NullPointerException 。
下面的程序说明了Java.util.EnumSet.allOf() 方法的工作:
方案一:
// Java program to demonstrate allof() 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
EnumSet e_set = null;
// Displaying the empty EnumSet
System.out.println(e_set);
// Getting all elements from GFG
e_set = EnumSet.allOf(GFG.class);
// Displaying the final set
System.out.println("The updated set is:" + e_set);
}
}
输出:
null
The updated set is:[Welcome, To, The, World, of, Geeks]
方案二:
// Java program to demonstrate allof() 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
EnumSet e_set = null;
// Displaying the empty EnumSet
System.out.println(e_set);
// Getting all elements from CARS
e_set = EnumSet.allOf(CARS.class);
// Displaying the final set
System.out.println("The updated set is:" + e_set);
}
}
输出:
null
The updated set is:[RANGE_ROVER, MUSTANG, CAMARO, AUDI, BMW]