I have a source class that defines string attributes as CharSequence (unfortunately).
So the following:
@Mapper(source="charSeq", target="str")
gives me:
Can't map property "java.lang.CharSequence charSeq" to "java.lang.String str". Consider to declare/implement a mapping method: "java.lang.String map(java.lang.CharSequence value)"
How can I implement this mapper method and make it available to all my mappers so that I do it once and for all?