C# konvertieren Enum in List
Enum.GetValues(typeof(SomeEnum)).Cast<SomeEnum>();
Good Goose
Enum.GetValues(typeof(SomeEnum)).Cast<SomeEnum>();
new ArrayList<MyEnum>(Arrays.asList(MyEnum.values()));