Exemplo n.º 1
0
 public override String nameForGetterMethod(MapperConfig <Q> config, AnnotatedMethod method, String defaultName)
 {
     if (skip(defaultName, method))
     {
         return(defaultName);
     }
     if (method.getName().startsWith("is"))
     {
         return(toPascalCasing(method.getName()));
     }
     return(toPascalCasing(defaultName));
 }