Uses of Class
org.codehaus.jackson.map.annotate.JacksonStdImpl

Packages that use JacksonStdImpl
org.codehaus.jackson.map.deser Contains implementation classes of deserialization part of data binding. 
org.codehaus.jackson.map.deser.impl   
org.codehaus.jackson.map.ser Contains implementation classes of serialization part of data binding. 
org.codehaus.jackson.map.ser.impl Contains implementation classes of serialization part of data binding. 
 

Uses of JacksonStdImpl in org.codehaus.jackson.map.deser
 

Classes in org.codehaus.jackson.map.deser with annotations of type JacksonStdImpl
 class ArrayDeserializer
          Basic serializer that can serialize non-primitive arrays.
 class CollectionDeserializer
          Basic serializer that can take JSON "Array" structure and construct a Collection instance, with typed contents.
 class MapDeserializer
          Basic serializer that can take Json "Object" structure and construct a Map instance, with typed contents.
static class StdDeserializer.BigDecimalDeserializer
           
static class StdDeserializer.BigIntegerDeserializer
          This is bit trickier to implement efficiently, while avoiding overflow problems.
static class StdDeserializer.BooleanDeserializer
           
static class StdDeserializer.ByteDeserializer
           
static class StdDeserializer.CalendarDeserializer
           
static class StdDeserializer.CharacterDeserializer
           
static class StdDeserializer.ClassDeserializer
           
static class StdDeserializer.DoubleDeserializer
           
static class StdDeserializer.FloatDeserializer
           
static class StdDeserializer.IntegerDeserializer
           
static class StdDeserializer.LongDeserializer
           
static class StdDeserializer.NumberDeserializer
          For type Number.class, we can just rely on type mappings that plain JsonParser.getNumberValue() returns.
static class StdDeserializer.ShortDeserializer
           
static class StdDeserializer.StringDeserializer
           
static class StdDeserializer.TokenBufferDeserializer
          We also want to directly support deserialization of TokenBuffer.
 class UntypedObjectDeserializer
          This deserializer is only used if it is necessary to bind content of unknown type (or without regular structure) into generic Java container types; Lists, Maps, wrappers, nulls and so on.
 

Uses of JacksonStdImpl in org.codehaus.jackson.map.deser.impl
 

Classes in org.codehaus.jackson.map.deser.impl with annotations of type JacksonStdImpl
 class StringCollectionDeserializer
           
 

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

Classes in org.codehaus.jackson.map.ser with annotations of type JacksonStdImpl
static class ArraySerializers.BooleanArraySerializer
           
static class ArraySerializers.ByteArraySerializer
          Unlike other integral number array serializers, we do not just print out byte values as numbers.
static class ArraySerializers.CharArraySerializer
          Character arrays are different from other integral number arrays in that they are most likely to be textual data, and should be written as Strings, not arrays of entries.
static class ArraySerializers.DoubleArraySerializer
           
static class ArraySerializers.FloatArraySerializer
           
static class ArraySerializers.IntArraySerializer
           
static class ArraySerializers.LongArraySerializer
           
static class ArraySerializers.ShortArraySerializer
           
static class ArraySerializers.StringArraySerializer
          Standard serializer used for String[] values.
static class ContainerSerializers.CollectionSerializer
          Fallback serializer for cases where Collection is not known to be of type for which more specializer serializer exists (such as index-accessible List).
static class ContainerSerializers.IndexedListSerializer
          This is an optimized serializer for Lists that can be efficiently traversed by index (as opposed to others, such as LinkedList that can not}.
static class ContainerSerializers.IterableSerializer
           
static class ContainerSerializers.IteratorSerializer
           
 class EnumMapSerializer
          Specialized serializer for EnumMaps.
 class EnumSerializer
          Standard serializer used for Enum types.
 class JsonValueSerializer
          Serializer class that can serialize Object that have a JsonValue annotation to indicate that serialization should be done by calling the method annotated, and serializing result it returns.
 class MapSerializer
          Standard serializer implementation for serializing {link java.util.Map} types.
 class NullSerializer
          This is a simple dummy serializer that will just output literal JSON null value whenever serialization is requested.
static class StdSerializers.BooleanSerializer
          Serializer used for primitive boolean, as well as java.util.Boolean wrapper type.
static class StdSerializers.CalendarSerializer
          For time values we should use timestamp, since that is about the only thing that can be reliably converted between date-based objects and json.
static class StdSerializers.DoubleSerializer
          This is the special serializer for regular Doubles (and primitive doubles)
static class StdSerializers.FloatSerializer
           
static class StdSerializers.IntegerSerializer
          This is the special serializer for regular Integers (and primitive ints)
static class StdSerializers.IntLikeSerializer
          Similar to StdSerializers.IntegerSerializer, but will not cast to Integer: instead, cast is to Number, and conversion is by calling Number.intValue().
static class StdSerializers.LongSerializer
           
static class StdSerializers.NumberSerializer
          As a fallback, we may need to use this serializer for other types of Numbers (custom types).
static class StdSerializers.SerializableSerializer
          Generic handler for types that implement JsonSerializable.
static class StdSerializers.SerializableWithTypeSerializer
          Generic handler for types that implement JsonSerializableWithType.
static class StdSerializers.SqlDateSerializer
          Compared to regular StdSerializers.UtilDateSerializer, we do use String representation here.
static class StdSerializers.SqlTimeSerializer
           
static class StdSerializers.StringSerializer
          This is the special serializer for regular Strings.
static class StdSerializers.TokenBufferSerializer
          We also want to directly support serialization of TokenBuffer; and since it is part of core package, it can not implement JsonSerializable (which is only included in the mapper package)
static class StdSerializers.UtilDateSerializer
          For efficiency, we will serialize Dates as longs, instead of potentially more readable Strings.
 class ToStringSerializer
          Simple general purpose serializer, useful for any type for which Object.toString() returns the desired JSON value.
 

Uses of JacksonStdImpl in org.codehaus.jackson.map.ser.impl
 

Classes in org.codehaus.jackson.map.ser.impl with annotations of type JacksonStdImpl
 class IndexedStringListSerializer
          Efficient implement for serializing Lists that contains Strings and are random-accessible.
 class ObjectArraySerializer
          Generic serializer for Object arrays (Object[]).
 class RawSerializer<T>
          This is a simple dummy serializer that will just output raw values by calling toString() on value to serialize.
 class StringCollectionSerializer
          Efficient implement for serializing Collections that contain Strings.