Uses of Interface
org.codehaus.jackson.map.JsonSerializable
-
Packages that use JsonSerializable 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 viaObjectMapperclass, as well as convenience methods included inJsonParserorg.codehaus.jackson.map.ser.std org.codehaus.jackson.map.type Package that contains concrete implementations ofJavaType, as well as the factory (TypeFactory) for constructing instances from various input data types (likeClass,Type) and programmatically (for structured types, arrays,Lists andMaps).org.codehaus.jackson.map.util Utility classes for Mapper package.org.codehaus.jackson.node Contains concreteJsonNodeimplementations Jackson uses for the Tree model. -
-
Uses of JsonSerializable in org.codehaus.jackson.map
Subinterfaces of JsonSerializable in org.codehaus.jackson.map Modifier and Type Interface Description interfaceJsonSerializableWithTypeInterface that is to replaceJsonSerializableto allow for dynamic type information embedding. -
Uses of JsonSerializable in org.codehaus.jackson.map.ser.std
Methods in org.codehaus.jackson.map.ser.std with parameters of type JsonSerializable Modifier and Type Method Description voidSerializableSerializer. serialize(JsonSerializable value, JsonGenerator jgen, SerializerProvider provider)voidSerializableSerializer. serializeWithType(JsonSerializable value, JsonGenerator jgen, SerializerProvider provider, TypeSerializer typeSer) -
Uses of JsonSerializable in org.codehaus.jackson.map.type
Classes in org.codehaus.jackson.map.type that implement JsonSerializable Modifier and Type Class Description classArrayTypeArray types represent Java arrays, both primitive and object valued.classCollectionLikeTypeType that represents things that act similar toCollection; but may or may not be instances of that interface.classCollectionTypeType that represents Java Collection types (Lists, Sets).classMapLikeTypeType that represents Map-like types; things that consist of key/value pairs but that do not necessarily implementMap, but that do not have enough introspection functionality to allow for some level of generic handling.classMapTypeType that represents "true" Java Map types.classSimpleTypeSimple types are defined as anything other than one of recognized container types (arrays, Collections, Maps).classTypeBase -
Uses of JsonSerializable in org.codehaus.jackson.map.util
Classes in org.codehaus.jackson.map.util that implement JsonSerializable Modifier and Type Class Description classJSONPObjectContainer class that can be used to wrap any Object instances (including nulls), and will serialize embedded in JSONP wrapping.classJSONWrappedObjectGeneral-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 Modifier and Type Class Description classArrayNodeNode class that represents Arrays mapped from Json content.classBaseJsonNodeAbstract base class common to all standardJsonNodeimplementations.classBigIntegerNodeNumeric node that contains simple 64-bit integer values.classBinaryNodeValue node that contains Base64 encoded binary value, which will be output and stored as Json String value.classBooleanNodeThis concrete value class is used to contain boolean (true / false) values.classContainerNodeThis intermediate base class is used for all container nodes, specifically, array and object nodes.classDecimalNodeNumeric node that contains values that do not fit in simple integer (int, long) or floating point (double) values.classDoubleNodeNumeric node that contains 64-bit ("double precision") floating point values simple 32-bit integer values.classIntNodeNumeric node that contains simple 32-bit integer values.classLongNodeNumeric node that contains simple 64-bit integer values.classMissingNodeThis singleton node class is generated to denote "missing nodes" along paths that do not exist.classNullNodeThis singleton value class is used to contain explicit JSON null value.classNumericNodeIntermediate value node used for numeric nodes.classObjectNodeNode that maps to JSON Object structures in JSON content.classPOJONodeValue node that contains a wrapped POJO, to be serialized as a JSON constructed through data mapping (usually done by callingObjectMapper).classTextNodeValue node that contains a text value.classValueNodeThis intermediate base class is used for all leaf nodes, that is, all non-container (array or object) nodes, except for the "missing node".
-