Package | Description |
---|---|
ratpack.handling |
The handling of application requests.
|
Modifier and Type | Method and Description |
---|---|
<T> T |
Context.parse(Class<T> type)
Parse the request into the given type, using no options (or more specifically an instance of
NullParseOpts as the options). |
<T,O> T |
Context.parse(Class<T> type,
O options)
Constructs a
Parse from the given args and delegates to Context.parse(Parse) . |
<T,O> T |
Context.parse(Parse<T,O> parse)
Parses the request body into an object.
|
<T> T |
Context.parse(TypeToken<T> type)
Parse the request into the given type, using no options (or more specifically an instance of
NullParseOpts as the options). |
<T,O> T |
Context.parse(TypeToken<T> type,
O options)
Constructs a
Parse from the given args and delegates to Context.parse(Parse) . |