Example usage for com.fasterxml.jackson.databind.introspect AnnotatedMethod getRawReturnType

List of usage examples for com.fasterxml.jackson.databind.introspect AnnotatedMethod getRawReturnType

Introduction

In this page you can find the example usage for com.fasterxml.jackson.databind.introspect AnnotatedMethod getRawReturnType.

Prototype

public Class<?> getRawReturnType() 

Source Link

Usage

From source file:de.fraunhofer.iosb.ilt.sta.serialize.EntitySetCamelCaseNamingStrategy.java

@Override
public String nameForGetterMethod(MapperConfig<?> config, AnnotatedMethod method, String defaultName) {
    return translate(defaultName, method.getRawReturnType());
}