See: Description
| Interface | Description |
|---|---|
| NoOptParser<T> |
A parser that uses
NoOptParse as its parse type. |
| Parse<T> |
A parse object is a description of how to parse the request into an object.
|
| Parser<T,P extends Parse<T>> |
A parser is able to deserialize the body of a request into an object representation.
|
| Class | Description |
|---|---|
| NoOptParse<T> |
A generic parse type that can be used when parsers do not need any extra information from parse objects other than type.
|
| NoOptParserSupport<T> |
A convenience base for
NoOptParser implementations. |
| ParserSupport<T,P extends Parse<T>> |
A convenience superclass of
Parser that implements the type methods based on the implementation. |
| ParseSupport<T> |
Convenience base for
Parse 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