I have roughly these types:
interface Record {}
interface UpdatableRecord extends Record {}
interface Insert<R extends Record> {
// Calling this method only makes sense if <R extends UpdatableRecord>
void onDuplicateKeyUpdate();
}
I would like to have an additional restriction on <R> when calling onDuplicateKeyUpdate(). The reason for this is that this method only makes sense, when <R> is bound to any subtype of UpdatableRecord, not just Record. Examples:
Insert<?> i1;
Insert<Record> i2;
Insert<UpdatableRecord> i3;
// these shouldn't compile
i1.onDuplicateKeyUpdate();
i2.onDuplicateKeyUpdate();
// this should compile
i3.onDuplicateKeyUpdate();
Is there any trick or way that I can use to add an additional restriction for the class' generic type just for one method declaration?
NOTE:
- Declaring
Insert<R extends UpdatableRecord>is not an option, because I want the flexibility of having anInsert<R extends Record>for records that are not updatable - Deriving
UpdatableInsert<R extends UpdatableRecord> extends Insert<R>and pushing the method down there might be an option, but I don't really want to introduce a new type. I have several of these methods with several different restrictions, which would lead to a type explosion. - Throwing
UnsupportedOperationExceptionis quite obvious, but it seems the Java 1.4 way of doing it. I really wonder if I can use generics and the compiler for this issue.
Ideal solution:
// This would be an annotation to be interpreted by the compiler. There is no such
// thing in Java, as far as I know. But maybe there's a trick having the same effect?
@Require(R extends UpdatableRecord)
void onDuplicateKeyUpdate();
onDupliceteKeyUpdate()from interfaceInsertand derive a second oneinterface UpdatableInsert<R extends UpdatableRecord> extends Insert<R>redefiningvoid onDuplicateKeyUpdate();? – Howard May 25 '11 at 18:21