Simple Java library for transforming an Object to another Object.
Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
net.sf.ezmorph.MorpherRegistry
Minimal example of object transformation using EZ Morph.
import net.sf.ezmorph.MorpherRegistry;
import net.sf.ezmorph.bean.BeanMorpher;
public class MorphExample {
public static void main(String[] args) {
MorpherRegistry registry = new MorpherRegistry();
registry.registerMorpher(new BeanMorpher(MyTarget.class, registry));
MySource source = new MySource();
MyTarget target = (MyTarget) registry.morph(MyTarget.class, source);
}
}
Upgrade
Version history
Breaking-change detection hasn't run for this library yet.
Audit
Security & dependencies
CVE tracking and dependency tree are planned for a later release.