How, in Java, to quickly (or generically) convert one class that implements an interface into another class that implements the same interface?
I mean, if they're a POJO one class setters should take the other class getters as arguments.
Is there a Pattern for this situation?