Kotlin nested multi-generic type class to a Java nested raw type

283 Views Asked by At

When trying to assign a java nested raw type to a kotlin nested generic, the compiler complains about incompatible types

In kotlin I have: class ExampleMap : HashMap<String, List<Any>>();

Now in Java when I try to declare a variable like so Map<String, List> map = new ExampleMap();, the compiler complains:

The following however compiles: Map<String, List<?>> map = new ExampleMap();. Also when there a single generic type everything works well, i.e. class ExampleList : ArrayList<Any>() / List list = new ExampleList();

Is there anyway to do this through an interop between Kotlin and Java? such that Map<String, List> map = new ExampleMap(); will compile?

0

There are 0 best solutions below