我有两个使用注释的类来定义字段和数据库列名之间的链接。这些类非常相似,除了它们定义的列名:
class TableA {
@ForeignName("IDTableA") // Column name in TableC referring to this TableA record
List<TableC> elements;
// Some other field definitions, common between TableA and TableB
// Some other field definitions, specific to TableA
}
class TableB {
@ForeignName("IDTableB") // Column name in TableC referring to this TableB record
List<TableC> elements;
// Some other field definitions, common between TableA and TableB
// Some other field definitions, specific to TableB
}
class TableC {
@LocalName("IDTableA")
TableA refA;
@LocalName("IDTableB")
TableB refB;
}
我想有一个超级课程,我可以给"IDTableA/B"
常数。理想情况下“喜欢”(我知道除了Generics之外你不能提供任何其他类型的东西,但只是为了说明我的观点):
abstract class TableAB<IDName> {
@ForeignName(IDName)
List<TableC> elements;
// Field definitions common between TableA and TableB
}
class TableA extends TableAB<"IDTableA"> {
// Field definitions, specific to TableA
}
class TableB extends TableAB<"IDTableB"> {
// Field definitions, specific to TableB
}
这有可能吗?
答案 0 :(得分:2)
不,这是不可能的。 IDName部分必须是常量,并且在任何情况下都不能将字符串文字作为泛型类型提供。