Package | Description |
---|---|
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. |
org.codehaus.jackson.map.ser |
Contains implementation classes of serialization part of
data binding.
|
Modifier and Type | Method and Description |
---|---|
JsonSchema |
ObjectMapper.generateJsonSchema(java.lang.Class<?> t)
Generate Json-schema
instance for specified class.
|
JsonSchema |
ObjectMapper.generateJsonSchema(java.lang.Class<?> t,
SerializationConfig cfg)
Generate Json-schema
instance for specified class, using specific
serialization configuration
|
abstract JsonSchema |
SerializerProvider.generateJsonSchema(java.lang.Class<?> type,
SerializationConfig config,
SerializerFactory jsf)
Generate Json-schema for
given type.
|
Modifier and Type | Method and Description |
---|---|
JsonSchema |
StdSerializerProvider.generateJsonSchema(java.lang.Class<?> type,
SerializationConfig config,
SerializerFactory jsf) |