Class StdKeyDeserializers

  • All Implemented Interfaces:
    KeyDeserializers, java.io.Serializable

    public class StdKeyDeserializers
    extends java.lang.Object
    implements KeyDeserializers, java.io.Serializable
    Helper class used to contain simple/well-known key deserializers. Following kinds of Objects can be handled currently:
    • Primitive wrappers (Boolean, Byte, Char, Short, Integer, Float, Long, Double)
    • Enums (usually not needed, since EnumMap doesn't call us)
    • Date
    • Calendar
    • UUID
    • Locale
    • Anything with constructor that takes a single String arg (if not explicitly @JsonIgnore'd)
    • Anything with static T valueOf(String) factory method (if not explicitly @JsonIgnore'd)
    See Also:
    Serialized Form