List of enum values in java

后端 未结 6 845
甜味超标
甜味超标 2021-02-01 01:25

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          


        
6条回答
  •  挽巷
    挽巷 (楼主)
    2021-02-01 01:37

    You can simply write

    new ArrayList(Arrays.asList(MyEnum.values()));
    

提交回复
热议问题