See: Description
| Interface | Description |
|---|---|
| Parser<O> |
A parser converts a request body into an object.
|
| 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 for
Parser implementations. |
| 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.
|
Parser