I have a class MySpecialClass <T extends Comparable<T>>
I am trying to to do the following:
toItemList() -> should take List<Dog> and convert it to List<T> so the MySpecialClass can operate on it.
fromItemList() -> should take in memory List<T> and convert it to List of objects. So if I have List it should convert it to List<Dog>, so I can get a back conversion after all operations are done.
How do I construct something like that in Java? My MySpecialClass works with List<T> which is why I need that.
public List<T> toItemList(List<dogs> list or List<cats> list){
// how to convert?
}
public List<dog> or List<cat> fromItemList(){
//local _inMemoryList (which is List<T>) convert to List<dog> or List<cat> depending on what MySpecialClass T is
// how to convert?
}
PS I am very new to java, always worked with .net so don't judge :)
toItemList()andfromItemList()? – anubhava Mar 22 '11 at 18:50