List of usage examples for org.springframework.core ResolvableType getSource
public Object getSource()
From source file:org.springframework.http.codec.json.Jackson2CodecSupport.java
@Nullable protected MethodParameter getParameter(ResolvableType type) { return type.getSource() instanceof MethodParameter ? (MethodParameter) type.getSource() : null; }