Java: instantiating an enum using reflection

前端 未结 5 1491
甜味超标
甜味超标 2020-12-08 09:07

Suppose you have a text file like:

my_setting = ON
some_method = METHOD_A
verbosity = DEBUG
...

That you wish to to update a corresponding

5条回答
  •  北荒
    北荒 (楼主)
    2020-12-08 09:55

    You have an extra getClass call, and you have to cast (more specific cast per Bozho):

    field.set(test, Enum.valueOf((Class) field.getType(), value));
    

提交回复
热议问题