C # convertit enum en liste
Enum.GetValues(typeof(SomeEnum)).Cast<SomeEnum>();
Good Goose
Enum.GetValues(typeof(SomeEnum)).Cast<SomeEnum>();
new ArrayList<MyEnum>(Arrays.asList(MyEnum.values()));