@@ -1206,8 +1206,14 @@ public JsonDeserializer<?> createCollectionDeserializer(DeserializationContext c
1206
1206
if (deser == null ) {
1207
1207
Class <?> collectionClass = type .getRawClass ();
1208
1208
if (contentDeser == null ) { // not defined by annotation
1209
+ // [databind#1853]: Map `Set<ENUM>` to `EnumSet<ENUM>`
1210
+ if (contentType .isEnumType () && (collectionClass == Set .class )) {
1211
+ collectionClass = EnumSet .class ;
1212
+ type = (CollectionType ) config .getTypeFactory ().constructSpecializedType (type , collectionClass );
1213
+ }
1209
1214
// One special type: EnumSet:
1210
1215
if (EnumSet .class .isAssignableFrom (collectionClass )) {
1216
+ // 25-Jan-2018, tatu: shouldn't we pass `contentDeser`?
1211
1217
deser = new EnumSetDeserializer (contentType , null );
1212
1218
}
1213
1219
}
@@ -1343,6 +1349,12 @@ public JsonDeserializer<?> createMapDeserializer(DeserializationContext ctxt,
1343
1349
if (deser == null ) {
1344
1350
// Value handling is identical for all, but EnumMap requires special handling for keys
1345
1351
Class <?> mapClass = type .getRawClass ();
1352
+ // [databind#1853]: Map `Map<ENUM,x>` to `EnumMap<ENUM,x>`
1353
+ if ((mapClass == Map .class ) && keyType .isEnumType ()) {
1354
+ mapClass = EnumMap .class ;
1355
+ type = (MapType ) config .getTypeFactory ().constructSpecializedType (type , mapClass );
1356
+ // type = (MapType) config.getTypeFactory().constructMapType(mapClass, keyType, contentType);
1357
+ }
1346
1358
if (EnumMap .class .isAssignableFrom (mapClass )) {
1347
1359
ValueInstantiator inst ;
1348
1360
0 commit comments