How to create empty EnumSet? March 28, 2023 by Tarik Use the method EnumSet.noneOf: EnumSet<MyClass> x = EnumSet.noneOf(MyClass.class);