i have 3 classes, class Z, calss A implements OInterface and calss B implements OInterface .
I want to create a function that converts a list of Z to a list of OInterface
List<OInterface > myfunction(List<Z> mylist){
List <OInterface > ret=new List <OInterface >;
for (Z z : mylist){
OInterface tmp=new OInterface ()
tmp.a=z.a
tmp.b=z.b
ret.add (tmp)
}
return ret;
}
that i can use like so :
List<Z> zzz=...
List<A> aaa=myfunction(zzz);
List<B> aaa=myfunction(zzz);
of course this does not compile, its more like pseudo code to show what i want to do.
is there a way of implementing this?
Zto aA. It would be much simpler to write a conversion method forlist of Z to Aandlist of Z to Brather than write a generic method which does both. – Peter Lawrey Oct 31 '11 at 15:45OInterfaceis an interface it would not support fields and thustmp.a = ...is not possible. – Howard Oct 31 '11 at 15:46myfunction(List<Z> my list)to return either aList<A>orList<B>, and that is simply impossible in Java: you can't overload based on return type. The signature you have provided,List<OInterface> myfunction(List<Z> mylist)will always take aListofZobjects (which, as you say, do not implementOInterface), and return a list of some other objects which do implementOInterface(eitherA, orB, some other class that implementsOInterface, or a mix of all three). Is that what you want? – Daniel Pryden Oct 31 '11 at 17:13