jbang/type-converter/MyConverter.java (8 lines of code) (raw):

import org.apache.camel.Converter; @Converter public class MyConverter { @Converter public static Dog catToDog(Cat cat) { return new Dog(cat.getName()); } }