Saturday, November 22, 2025
HomeLanguagesJavaEnumSet clone() Method in Java

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.util.EnumSet.clone() method:
Program 1:




// Java program to demonstrate clone() 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 empty EnumSet
        System.out.println("Initial set: " + e_set);
  
        // Cloning the set
        EnumSet<GFG> final_set = e_set.clone();
  
        // Displaying the final set
        System.out.println("The updated set is:" + final_set);
    }
}


Output:

Initial set: [Welcome, To, The, World, of, Geeks]
The updated set is:[Welcome, To, The, World, of, Geeks]

Program 2:




// Java program to demonstrate clone() 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 empty EnumSet
        System.out.println("Initial set: " + e_set);
  
        // Cloning the set
        EnumSet<CARS> final_set = e_set.clone();
  
        // Displaying the final set
        System.out.println("The updated set is:" + final_set);
    }
}


Output:

Initial set: [RANGE_ROVER, MUSTANG, CAMARO, AUDI, BMW]
The updated set is:[RANGE_ROVER, MUSTANG, CAMARO, AUDI, BMW]
RELATED ARTICLES

Most Popular

Dominic
32407 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6785 POSTS0 COMMENTS
Nicole Veronica
11932 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12000 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7168 POSTS0 COMMENTS
Thapelo Manthata
6864 POSTS0 COMMENTS
Umr Jansen
6852 POSTS0 COMMENTS