I have an interface called SerializableL that is implemented by 3 different classes:
I started refactoring and wanted to replace multiple paragraphs with multiple method calls.
public void load(ConcurrentHashMap<String, SerializableL> map,
ArrayList<SerializableForL> preparedList)
I've written the following code and get the following error.
Code:
ConcurrentHashMap<String, SerializableForL> test = DBStore.Cache.get(tag);
Error:
Type mismatch: cannot convert from ConcurrentHashMap<String,Banner> to
ConcurrentHashMap<String,SerializableForL>
How can I do a workaround?
I want a way to cast (ConcurrentHashMap<String,Banner> to
ConcurrentHashMap<String,SerializableForL>) .
A banner IS a SerializableForL.
You can't assign a Map<String,Banner> to a Map<String,SerializableForL> even if Banner implements SerializableForL.
However, if you only care about the values being SerializableForL you should be able to write:
ConcurrentMap<String, ? extends SerializableForL> test = DBStore.Cache.get(tag);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With