I have a complex object hierarchy that has a couple of extends.
class One { String name; Color color; List clothes; }
class Two extends One { Test test; }
class Foo { One One; Two two; }
I want to copy all the attributes of a object of class One into a new object of class say another. How to do this ? Is there any library available ?