Uses of Interface
ratpack.core.jackson.JsonParseOpts
-
Packages that use JsonParseOpts Package Description ratpack.core.jackson Integration with the Jackson JSON marshalling library. -
-
Uses of JsonParseOpts in ratpack.core.jackson
Methods in ratpack.core.jackson that return types with arguments of type JsonParseOpts Modifier and Type Method Description static <T> Parse<T,JsonParseOpts>
Jackson. fromJson(com.google.common.reflect.TypeToken<T> type)
Creates aparseable object
to parse a request body into the given type.static <T> Parse<T,JsonParseOpts>
Jackson. fromJson(com.google.common.reflect.TypeToken<T> type, ObjectMapper objectMapper)
Creates aparseable object
to parse a request body into the given type.static <T> Parse<T,JsonParseOpts>
Jackson. fromJson(Class<T> type)
Creates aparseable object
to parse a request body into the given type.static <T> Parse<T,JsonParseOpts>
Jackson. fromJson(Class<T> type, ObjectMapper objectMapper)
Creates aparseable object
to parse a request body into the given type.static Parse<JsonNode,JsonParseOpts>
Jackson. jsonNode()
Creates aparseable object
to parse a request body into aJsonNode
.static Parse<JsonNode,JsonParseOpts>
Jackson. jsonNode(ObjectMapper objectMapper)
Creates aparseable object
to parse a request body into aJsonNode
.
-