We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
With Jackson we can deserialize json string with typeReference like this
objectMapper.readValue(str, new TypeReference(Map<String, Object>)() {});
But now we only support .class
transport.search(searchRequest, Map.class);