Class StdKeyDeserializers


  • public class StdKeyDeserializers
    extends java.lang.Object
    Helper class used to contain simple/well-known key deserializers. Following kinds of Objects can be handled currently:
    • Primitive wrappers
    • Enums (usually not needed, since EnumMap doesn't call us)
    • 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)