java 泛型 枚举_java中的枚举和泛型方法

我仍然遇到java泛型系统中的一些极端情况的问题.

我有这种方法(我只对签名感兴趣):

interface Extractor {

public > RETURN_TYPE extractEnum(final Class enumType);

}

(想想一个接口,其实现有时会提取一个EnumSet,有时一个实现提取一个JComboBox等)

我想用在运行时获得的类调用它,所以我只是这样调用它:

public static RETURN_TYPE extractField(final Extractor extractor, final Field field) {

final Class> type = field.getType();

if (type.isEnum())

return extractor.extractEnum(/* error here*/type.asSubclass(Enum.class));

throw new RuntimeException("the rest of the visitor is not necessary here");

}

我收到一条奇怪的错误信息:

????不兼容的类型

????发现:java.lang.Object

????必需:RETURN_TYPE

消息的位置,如果恰好在调用的开头braket之后,在类型的“t”之前.

如果我从非通用上下文中调用它,它可以工作:

Integer extractField(final Extractor extractor, final Field field) {

final Class> type = field.getType();

if (type.isEnum())

return extractor.extractEnum(type.asSubclass(Enum.class));

throw new RuntimeException("the rest of the visitor is not necessary here");

}

有没有人对这个问题有解释和解决方案好吗?

这是一个完整的文件,供想要玩它的人使用:

public class Blah {

interface Extractor {

public > RETURN_TYPE extractEnum(final Class enumType);

}

public static RETURN_TYPE extractField(final Extractor extractor, final Field field) {

final Class> type = field.getType();

if (type.isEnum())

return extractor.extractEnum(/* error here*/type.asSubclass(Enum.class));

throw new RuntimeException("the rest of the visitor is not necessary here");

}

public static Integer extractField(final Extractor extractor, final Field field) {

final Class> type = field.getType();

if (type.isEnum())

return extractor.extractEnum(type.asSubclass(Enum.class));

throw new RuntimeException("the rest of the visitor is not necessary here");

}

}

提前致谢,

尼科

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值