Java EnumSet noneOf() Method Last Updated : 22 May, 2025 Comments Improve Suggest changes Like Article Like Report The EnumSet.noneOf() method is a part of java.util package. This method is used to create an empty EnumSet for a given enum type. Suppose we create a set with no elements first, but that will only hold the enum constants of a particular enum class. In this article, we are going to learn about the EnumSet noneOf() method in Java.Syntax of EnumSet noneOf() Methodpublic static <E extends Enum<E>> EnumSet<E> noneOf(Class<E> elementType)Parameters: This method accepts one parameter, elementType of element type which refers to the class object of the element type for this enum set. Return Value: This method does not return any value. Exceptions: This method throws a NullPointerException if the elementType is Null.This method creates an empty EnumSet. This can hold enum constants of the given enum type, but starts with no elements. This is useful when we want to start with an empty set and add elements later.Examples of Java EnumSet noneOf() MethodExample 1: In this example, we will create an empty EnumSet using the method noneOf(). Java // Java program to demonstrate // EnumSet.noneOf() method usage import java.util.*; // Define an enum type enum GFG { Welcome, To, The, World, of, Geeks } public class Geeks { public static void main(String[] args) { // Create an EnumSet that contains // all constants of GFG EnumSet<GFG> allSet = EnumSet.allOf(GFG.class); System.out.println("All elements: " + allSet); // Create an empty EnumSet of // type GFG using noneOf() EnumSet<GFG> emptySet = EnumSet.noneOf(GFG.class); System.out.println("Empty set: " + emptySet); } } Example 2: In this example, we will use the noneOf() method with a different enum. Java // Java program to demonstrate EnumSet.noneOf() // method with a different enum import java.util.*; // Define another enum type enum CARS { RANGE_ROVER, MUSTANG, CAMARO, AUDI, BMW } public class Geeks { public static void main(String[] args) { // Create an EnumSet with all // CARS enum constants EnumSet<CARS> allCars = EnumSet.allOf(CARS.class); System.out.println("All cars: " + allCars); // Create an empty EnumSet of type CARS EnumSet<CARS> emptyCarsSet = EnumSet.noneOf(CARS.class); System.out.println("Empty cars set: " + emptyCarsSet); } } Important Points:This method is type-safe, so that we can only add enum constants of that type.This method is very useful when we want to initialize an empty set and add enum values later. Create Quiz Comment C chinmoy lenka Follow 0 Improve C chinmoy lenka Follow 0 Improve Article Tags : 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