In java, I know it's possible to e.g.:
static <T> void fromArrayToCollection(T[] a, Collection<T> c) {
for (T o : a) {
c.add(o); // Correct
}
}
In my scenario, I have an enumeration of different settings I can retrieve a value for, where each setting has a different value type. I'd like to specify these value types in the enumeration, and get compile-time checking similar to the above.
Here is a version with runtime checking -- is compile-time checking possible?
public class Foo {
public static enum ClientSetting {
SOME_STRING_SETTING(String.class),
SOME_INTEGER_SETTING(Integer.class);
private Class valueClass;
ClientSetting(Class valueClass) {
this.valueClass = valueClass;
}
}
public static <T> T get(ClientSetting bar) {
if (bar.valueClass.equals(String.class))
return (T) "My string value.";
else if (bar.valueClass.equals(Integer.class))
return (T) new Integer(2);
else
return null; // unreachable if every possibility is checked
}
public static void main(String[] args) {
String stringValue = get(ClientSetting.SOME_STRING_SETTING);
Integer integerValue = get(ClientSetting.SOME_INTEGER_SETTING);
}
}
Thanks!

public interface ClientSettings { String someStringSetting(); int someIntegerSetting(); ... }would be vastly preferable. – Tom Hawtin - tackline May 4 '11 at 10:08