I want to create a single class that refers to a type of service using an interface. The service can have different implementations. The different implementations will process different types of requests. In the past I would define an interface something like this:
public interface I_Test
{
public String get(String key, Enum type);
}
and implement it like this:
public class Test_1 implements I_Test
{
public String get(String key, Enum type)
{
Enum_1 t1 = (Enum_1)type;
switch(t1)
{
case NAME:
return "Garry";
case DOB:
return "1966";
default:
throw new IllegalArgumentException("Unkown type [" + type + "]");
}
}
}
The good is I can use a different implementation of my interface to meet different needs. The bad is I have to type cast and so have a risk at runtime.
I was hoping that generics could solve this, so I did this:
public interface I_Test<T extends Enum>
{
public String get(String key, T type);
}
and this:
public class Test_1 implements I_Test<Enum_1>
{
public String get(String key, Enum_1 type)
{
switch(type)
{
case NAME:
return "Garry";
case DOB:
return "1966";
default:
throw new IllegalArgumentException("Unkown type [" + type + "]");
}
}
}
but when I go to use the thing I get type safety warnings unless I declare my variable with the type I intend to use, like so:
I_Test<Enum_1> t1 = new Test_1();
This really bugs me because the whole point of creating the I_Test interface was so that I could use different implementations but it seems I have to lock in to a particular type at compile time to avoid this warning!
Is there any way to write a reusable interface that uses generics without this annoying warning?
switchin place of polymorphism. Looks like your above logic could be done much more easily withMap<K,V>– davin Feb 7 '11 at 18:59