java.lang.Object
edu.internet2.middleware.grouperClientExt.com.fasterxml.jackson.databind.deser.std.StdKeyDeserializers
All Implemented Interfaces:
KeyDeserializers, Serializable

public class StdKeyDeserializers extends Object implements KeyDeserializers, 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: