Given the following situation it's only possible to write a model handler which works on SpecificModel, it's not possible to have a model handler which handles only models. But when we remove the T extends Model expression, it would be much to easy to create something illegal.
public interface Model {}
public class SpecificModel implements Model {}
public interface ModelHandler<T extends Model>
{
void handleModel(T model);
}
Is it possible to write a construct like T extends Model || Model ? So T must either extend Model or must be a Model itself if the handler doesn't know a subtype of Model?
Thank you!