Annotation Interface MappedTypes


@Documented @Retention(RUNTIME) @Target(TYPE) public @interface MappedTypes
The annotation that specify java types to map TypeHandler.

How to use:

 @MappedTypes(String.class)
 public class StringTrimmingTypeHandler implements TypeHandler<String> {
   // ...
 }
 
Author:
Eduardo Macarron