How to convert Map<String, String> to Map<MyClass, MyOtherClass>?
I have a simple Map<String, String> scanMap and I want to collect and covert it to a map of type of Map<CustomTag, CustomTagType>. CustomTag has 2 fields properties – key & value and I want to inject the original map key & value into it. the 2nd CustomTagType is an enum. I want to do… Read More How to convert Map<String, String> to Map<MyClass, MyOtherClass>?