Why doesn't this work with Dozer? What would I have to do to make it happen? We have a gazillion enums, and sometimes we just need to map between them. Any way we could just configure dozer to do this without writing custom stuff?
enum EnumOne{ TEST1, TEST2 }
enum EnumTwo{ TEST1, TEST2 }
Mapper dozerMapper;
dozerMapper.map(EnumOne.TEST1, EnumTwo.class);