如何使用 Class<?> 调用 EnumSet#(all|none)Of?
How to invoke EnumSet#(all|none)Of with a Class<?>?
我需要用 class 的未知类型调用 EnumSet#nonOf or EnumSet#allOf。
@Override
public Object resolveParameter(ParameterContext parameterContext, ExtensionContext extensionContext) {
final EnumSetOfAll annotation = parameterContext.getParameter().getAnnotation(EnumSetOfAll.class);
final Class<?> value = annotation.value();
if (!value.isEnum()) {
throw new ParameterResolutionException("value(" + value + ") is not an enum");
}
// How can I return the result of EnumSet#(all|none)Of invoked with value?
}
首先,将注释的类型 value()
更改为 Class<? extends Enum>
。
现在您可以:
final Class<? extends Enum> value = annotation.value();
现在可以传递给 allOf
和 noneOf
:
EnumSet<?> set = EnumSet.allOf(value);
我需要用 class 的未知类型调用 EnumSet#nonOf or EnumSet#allOf。
@Override
public Object resolveParameter(ParameterContext parameterContext, ExtensionContext extensionContext) {
final EnumSetOfAll annotation = parameterContext.getParameter().getAnnotation(EnumSetOfAll.class);
final Class<?> value = annotation.value();
if (!value.isEnum()) {
throw new ParameterResolutionException("value(" + value + ") is not an enum");
}
// How can I return the result of EnumSet#(all|none)Of invoked with value?
}
首先,将注释的类型 value()
更改为 Class<? extends Enum>
。
现在您可以:
final Class<? extends Enum> value = annotation.value();
现在可以传递给 allOf
和 noneOf
:
EnumSet<?> set = EnumSet.allOf(value);