Skip to content
geeksforgeeks
  • Tutorials
    • Python
    • Java
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
    • Practice Coding Problems
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Java Arrays
  • Java Strings
  • Java OOPs
  • Java Collection
  • Java 8 Tutorial
  • Java Multithreading
  • Java Exception Handling
  • Java Programs
  • Java Project
  • Java Collections Interview
  • Java Interview Questions
  • Java MCQs
  • Spring
  • Spring MVC
  • Spring Boot
  • Hibernate
Open In App
Next Article:
Java EnumSet range() Method
Next article icon

EnumSet of() Method in Java

Last Updated : 10 Jul, 2018
Comments
Improve
Suggest changes
Like Article
Like
Report
  1. The java.util.EnumSet.of(E ele1, E ele2, E ele3, ...) method in Java is used to create an enum set initially containing the specified elements in the parameters. When multiple items are added at the same time the elements are pushed down the set as the new elements are added. When different elements are added at different time or iteration, the old elements get replaced. Syntax:
    Enum_Set = EnumSet.of(E ele1, E ele2, E ele3, ...)
    Parameters: The method can take multiple parameters as many as present in the enum. Return Values: The method returns an enum set initially containing the specified elements passed through the parameter. Exceptions: The method throws NullPointerException if any element passed is NULL. Below programs illustrate the working of java.util.EnumSet.of() method: Program 1: Adding one element at a time replaces the previous element. Java
    // Java program to demonstrate range() 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 EnumSet         EnumSet<GFG> e_set;          // Adding elements         e_set = EnumSet.of(GFG.The);          // Displaying the updated set         System.out.println("The enum set is: " + e_set);          // Adding elements         e_set = EnumSet.of(GFG.Geeks);          // Displaying the updated set         System.out.println("The enum set is: " + e_set);          // Adding elements         e_set = EnumSet.of(GFG.Welcome);          // Displaying the updated set         System.out.println("The enum set is: " + e_set);     } } 
    Output:
      The enum set is: [The]  The enum set is: [Geeks]  The enum set is: [Welcome]  
    Program 2: Adding two elements at the same time. Java
    // Java program to demonstrate range() 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 EnumSet         EnumSet<GFG> e_set;          // Adding elements         e_set = EnumSet.of(GFG.The, GFG.Geeks);          // Displaying the updated set         System.out.println("The enum set is: " + e_set);          // Adding elements         e_set = EnumSet.of(GFG.Geeks, GFG.Welcome);          // Displaying the updated set         System.out.println("The enum set is: " + e_set);          // Adding elements         e_set = EnumSet.of(GFG.of, GFG.World);          // Displaying the updated set         System.out.println("The enum set is: " + e_set);     } } 
    Output:
      The enum set is: [The, Geeks]  The enum set is: [Welcome, Geeks]  The enum set is: [World, of]  
    Program 3: Adding multiple elements at the same time. Java
    // Java program to demonstrate range() 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 EnumSet         EnumSet<GFG> e_set;          // Adding 2 elements         e_set = EnumSet.of(GFG.The, GFG.Geeks);          // Displaying the updated set         System.out.println("The enum set is: " + e_set);          // Adding 3 elements         e_set = EnumSet.of(GFG.The, GFG.Geeks, GFG.Welcome);          // Displaying the updated set         System.out.println("The enum set is: " + e_set);          // Adding 4 elements         e_set = EnumSet.of(GFG.Geeks, GFG.Welcome,                            GFG.of, GFG.World);          // Displaying the updated set         System.out.println("The enum set is: " + e_set);          // Adding 5 elements         e_set = EnumSet.of(GFG.Welcome, GFG.To, GFG.The,                            GFG.of, GFG.World, GFG.Geeks);          // Displaying the updated set         System.out.println("The enum set is: " + e_set);     } } 
    Output:
      The enum set is: [The, Geeks]  The enum set is: [Welcome, The, Geeks]  The enum set is: [Welcome, World, of, Geeks]  The enum set is: [Welcome, To, The, World, of, Geeks]  
  2. The java.util.EnumSet.of(E_first, E_rest) is used to create an enum set initially containing all the specified elements. This factory, whose parameter list uses the var_args feature, can also be used to create an enum set initially containing an arbitrary number of elements, but it comes with a disadvantage of making the program to run slower than the overloadings that do not use var_args. Syntax:
    public static <E extends Enum<E>> EnumSet<E> of(E_first, E_rest)
    Parameters: The method takes two parameters:
    • E_first: This is of enum type and refers to the element that the set is to contain initially.
    • E_rest: This is also of enum type and refers to the rest of the elements the set needs to contain initially.
    Return Values: The method returns an enum set initially containing the specified elements passed through the parameters. Exceptions: The method throws NullPointerException if any element passed is NULL. Below program illustrates the working of java.util.EnumSet.of(E_first, E_rest) method: Java
    // Java program to demonstrate of() 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 the ist that will be used as args       GFG[] listing = {GFG.Welcome, GFG.The,                         GFG.World, GFG.Geeks};        // Calling the other main function       other_main(listing);    }     // The other_main.    public static void other_main(GFG[] other_args) {        // Creating the set       EnumSet<GFG> e_set;        // Adding the first element and the other_args       e_set = EnumSet.of(GFG.Welcome, other_args);        // Displaying the e_set       System.out.println("Set: " + e_set);    } } 
    Output:
      Set: [Welcome, The, World, Geeks]  

Next Article
Java EnumSet range() Method

C

chinmoy lenka
Improve
Article Tags :
  • Misc
  • Java
  • Java-Collections
  • Java-Functions
  • java-EnumSet
Practice Tags :
  • Java
  • Java-Collections
  • Misc

Similar Reads

    EnumSet in Java
    In Java, the EnumSet is a specialized set implementation for use with enum types. It is a part of java.util package and provides a highly optimized set for storing enum constants. The EnumSet is one of the specialized implementations of the Set interface for use with the enumeration type.It extends
    9 min read
    EnumSet allof() Method in Java
    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 re
    2 min read
    EnumSet clone() Method in Java
    The Java.util.EnumSet.clone() method in Java is used to return a shallow copy of the existing or this set. Syntax: Enum_Set_2 = Enum_Set_1.clone() Parameters: The method does not take any parameters. Return Value: The method does not return any value. Below programs illustrate the working of Java.ut
    2 min read
    EnumSet complementOf() Method in Java
    The java.util.EnumSet.complementOf(Enum_Set) method is used to create an EnumSet containing elements of the same type as that of the specified Enum_Set, with the values present in the enum but other than those contained in the specified Enum_Set. Syntax: New_Enum_Set = EnumSet.complementOf(Enum_Set)
    2 min read
    EnumSet copyOf() Method in Java
    The java.util.EnumSet.copyOf(Collection collect) method in Java is used to copy all of the contents from a collection to a new enum set. At first, the collection is made out of the elements of the enum and then a new enum set is created, which is the copy of the collection. Syntax: New_Enum_Set = En
    3 min read
    Java EnumSet noneOf() Method
    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 En
    2 min read
    EnumSet of() Method in Java
    The java.util.EnumSet.of(E ele1, E ele2, E ele3, ...) method in Java is used to create an enum set initially containing the specified elements in the parameters. When multiple items are added at the same time the elements are pushed down the set as the new elements are added. When different elements
    5 min read
    Java EnumSet range() Method
    The EnumSet.range() method is a part of the java.util package. This method is used to create an EnumSet that contains all enum constants between the specified start and end points, and it should be inclusive. It easily creates a subset of enum constants within a specified range.Syntax of EnumSet ran
    2 min read
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences