adelavina

Results 3 comments of adelavina

``` Arrays.stream(controllerClazz.getMethods()) .map(m -> m.getName() + " (" + Arrays.stream(m.getParameters()).map(Parameter::getType).collect(Collectors.toList())+")").forEach(System.out::println); ``` Results in: ``` findAll ([]) save ([class com.library.entitities.RegistrableEntity]) wait ([long]) wait ([long, int]) wait ([]) equals ([class java.lang.Object]) toString...

I'm not, simply subclassing with the Generic spec. Understood your point. Any tip or guide on how to substitute the methods parameter and return type to match the expected behaviour...