EnumSet allof() Method in Java Last Updated : 02 Jul, 2018 Comments Improve Suggest changes 1 Likes Like Report The Java.util.EnumSet.allOf(Class elementType) in Java is used to create an enum set that will be used to contain all of the elements in the specified elementType. Syntax: public static > EnumSet allOf(Class elementType) Parameters: The method accepts one parameter elementType of element type and refers to the class object whose elements are to be stored into the set. Return Value: The method does not return any value. Exceptions: The method throws NullPointerException if the elementType is Null. Below programs illustrate the working of Java.util.EnumSet.allOf() method: Program 1: Java // 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<GFG> 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); } } Output: null The updated set is:[Welcome, To, The, World, of, Geeks] Program 2: Java // 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<CARS> 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); } } Output: null The updated set is:[RANGE_ROVER, MUSTANG, CAMARO, AUDI, BMW] Create Quiz Comment C chinmoy lenka Follow 1 Improve C chinmoy lenka Follow 1 Improve Article Tags : Misc Java java-EnumSet Explore Java BasicsIntroduction to Java3 min readJava Programming Basics9 min readJava Methods6 min readAccess Modifiers in Java4 min readArrays in Java7 min readJava Strings7 min readRegular Expressions in Java3 min readOOP & InterfacesClasses and Objects in Java5 min readAccess Modifiers in Java4 min readJava Constructors4 min readJava OOP(Object Oriented Programming) Concepts10 min readJava Packages2 min readJava Interface7 min readCollectionsCollections in Java12 min readCollections Class in Java13 min readCollection Interface in Java4 min readIterator in Java4 min readJava Comparator Interface5 min readException HandlingJava Exception Handling6 min readJava Try Catch Block4 min readJava final, finally and finalize4 min readChained Exceptions in Java3 min readNull Pointer Exception in Java5 min readException Handling with Method Overriding in Java4 min readJava AdvancedJava Multithreading Tutorial3 min readSynchronization in Java7 min readFile Handling in Java4 min readJava Method References9 min readJava 8 Stream Tutorial7 min readJava Networking6 min readJDBC Tutorial5 min readJava Memory Management3 min readGarbage Collection in Java6 min readMemory Leaks in Java3 min readPractice JavaJava Interview Questions and Answers15+ min readJava Programs - Java Programming Examples7 min readJava Exercises - Basic to Advanced Java Practice Programs with Solutions5 min readJava Quiz1 min readJava Project Ideas For Beginners and Advanced15+ min read Like