"first time long time" as they say on the radio talk shows...
I'm trying to parse a delimited property into a List. Simple enough, but for some reason I can't figure how to do this in a generic fashion using only Core Java. By generic, I mean the type of List to create may be a List< String >, List< Integer >, or List< Double >. My latest stab at it below gives runtime exceptions with non-Strings because I'm trying to cast from String to e.g. Double which is not allowed. Any help is appreciated.
public static <T> void parsePropsToList(String propName, String delim, List<T> listToFill){
//This is paired down for convenience - assume getSplitList correctly parses to List<String>
List<String> stringList = PropsManager.getSplitList(propName, delim);
for(String s : stringList){
listToFill.add((T)s);
}
}