Package ratpack.core.parse
Parsing in Ratpack refers to deserializing a request body into a Java object of some type.
- See Also:
Parser
-
Interface Summary Interface Description Parser<O> A parser converts a request body into an object. -
Class Summary Class Description NoOptParserSupport A convenience base for parsers that don't require options.NullParseOpts A generic parse type that can be used when parsers do not need any extra information from parse objects other than type.Parse<T,O> The specification of a particular parse.ParserSupport<O> A convenience superclass forParser
implementations. -
Exception Summary Exception Description NoSuchParserException Thrown when a request is made to parse the request, but no suitable parser was found that matched the content type and parse object.ParseException A generic super type for exceptions indicate something when wrong for a parse operation.ParserException Wraps an exception thrown by a parser while parsing.