Uses of Interface
ratpack.gson.GsonParseOpts
-
Packages that use GsonParseOpts Package Description ratpack.gson Provides integration with Google Gson for JSON parsing and rendering. -
-
Uses of GsonParseOpts in ratpack.gson
Methods in ratpack.gson that return types with arguments of type GsonParseOpts Modifier and Type Method Description static <T> Parse<T,GsonParseOpts>
Gson. fromJson(com.google.common.reflect.TypeToken<T> type)
Creates aparseable object
to parse a request body into the given type.static <T> Parse<T,GsonParseOpts>
Gson. fromJson(com.google.common.reflect.TypeToken<T> type, com.google.gson.Gson gson)
Creates aparseable object
to parse a request body into the given type.static <T> Parse<T,GsonParseOpts>
Gson. fromJson(Class<T> type)
Creates aparseable object
to parse a request body into the given type.static <T> Parse<T,GsonParseOpts>
Gson. fromJson(Class<T> type, com.google.gson.Gson gson)
Creates aparseable object
to parse a request body into the given type.static Parse<com.google.gson.JsonElement,GsonParseOpts>
Gson. jsonElement()
Creates aparseable object
to parse a request body into aJsonElement
.static Parse<com.google.gson.JsonElement,GsonParseOpts>
Gson. jsonElement(com.google.gson.Gson gson)
Creates aparseable object
to parse a request body into aJsonElement
.
-