Is it possible to create ArrayList of enum values (and manipulate it)? For example:
enum MyEnum { ONE, TWO } MyEnum my = MyEnum.ONE; List > al = new
It is possible but you should use EnumSet instead
enum MyEnum { ONE, TWO; public static final EnumSet all = EnumSet.of(ONE, TWO); }