Uses of Interface
org.codehaus.jackson.map.JsonSerializable

Packages that use JsonSerializable
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 
org.codehaus.jackson.map.ser Contains implementation classes of serialization part of data binding. 
org.codehaus.jackson.map.util Utility classes for Mapper package. 
org.codehaus.jackson.node Contains concrete JsonNode implementations Jackson uses for the Tree model. 
 

Uses of JsonSerializable in org.codehaus.jackson.map
 

Subinterfaces of JsonSerializable in org.codehaus.jackson.map
 interface JsonSerializableWithType
          Interface that is to replace JsonSerializable to allow for dynamic type information embedding.
 

Uses of JsonSerializable in org.codehaus.jackson.map.ser
 

Methods in org.codehaus.jackson.map.ser with parameters of type JsonSerializable
 void StdSerializers.SerializableSerializer.serialize(JsonSerializable value, JsonGenerator jgen, SerializerProvider provider)
           
 void StdSerializers.SerializableSerializer.serializeWithType(JsonSerializable value, JsonGenerator jgen, SerializerProvider provider, TypeSerializer typeSer)
           
 

Uses of JsonSerializable in org.codehaus.jackson.map.util
 

Classes in org.codehaus.jackson.map.util that implement JsonSerializable
 class JSONPObject
          Container class that can be used to wrap any Object instances (including nulls), and will serialize embedded in JSONP wrapping.
 class JSONWrappedObject
          General-purpose wrapper class that can be used to decorate serialized value with arbitrary literal prefix and suffix.
 

Uses of JsonSerializable in org.codehaus.jackson.node
 

Classes in org.codehaus.jackson.node that implement JsonSerializable
 class ArrayNode
          Node class that represents Arrays mapped from Json content.
 class BaseJsonNode
          Abstract base class common to all standard JsonNode implementations.
 class BigIntegerNode
          Numeric node that contains simple 64-bit integer values.
 class BinaryNode
          Value node that contains Base64 encoded binary value, which will be output and stored as Json String value.
 class BooleanNode
          This concrete value class is used to contain boolean (true / false) values.
 class ContainerNode
          This intermediate base class is used for all container nodes, specifically, array and object nodes.
 class DecimalNode
          Numeric node that contains values that do not fit in simple integer (int, long) or floating point (double) values.
 class DoubleNode
          Numeric node that contains 64-bit ("double precision") floating point values simple 32-bit integer values.
 class IntNode
          Numeric node that contains simple 32-bit integer values.
 class LongNode
          Numeric node that contains simple 64-bit integer values.
 class MissingNode
          This singleton node class is generated to denote "missing nodes" along paths that do not exist.
 class NullNode
          This singleton value class is used to contain explicit JSON null value.
 class NumericNode
          Intermediate value node used for numeric nodes.
 class ObjectNode
          Note that maps to Json Object structures in Json content.
 class POJONode
          Value node that contains a wrapped POJO, to be serialized as a Json constructed through data mapping (usually done by calling ObjectMapper).
 class TextNode
          Value node that contains a text value.
 class ValueNode
          This intermediate base class is used for all leaf nodes, that is, all non-container (array or object) nodes, except for the "missing node".