程序包 | 说明 |
---|---|
org.codehaus.jackson.map |
Contains basic mapper (conversion) functionality that
allows for converting between regular streaming json content and
Java objects (beans or Tree Model: support for both is via
ObjectMapper class, as well
as convenience methods included in
JsonParser
Object mapper will convert Json content to ant from
basic Java wrapper types (Integer, Boolean, Double),
Collection types (List, Map), Java Beans,
Strings and nulls. |
限定符和类型 | 字段和说明 |
---|---|
protected LinkedList<JsonMappingException.Reference> |
JsonMappingException._path
Path through which problem that triggering throwing of
this exception was reached.
|
限定符和类型 | 方法和说明 |
---|---|
List<JsonMappingException.Reference> |
JsonMappingException.getPath() |
限定符和类型 | 方法和说明 |
---|---|
void |
JsonMappingException.prependPath(JsonMappingException.Reference r) |
static JsonMappingException |
JsonMappingException.wrapWithPath(Throwable src,
JsonMappingException.Reference ref)
Method that can be called to either create a new JsonMappingException
(if underlying exception is not a JsonMappingException), or augment
given exception with given path/reference information.
|