I have a class (EntireFile) that extends the LinkedHashMap. I try to cast:
EntireFile old = (EntireFile) functionReturningLinkedHashMap();
It throws exception with message: "java.util.LinkedHashMap cannot be cast to com.gmail.maximsmol.YAML.GroupMap".
public class EntireFile extends LinkedHashMap<String, GroupMap>
public class GroupMap extends LinkedHashMap<String, CategoryMap>
public class CategoryMap extends LinkedHashMap<String, LinkedHashMap<String, Integer>>
Please help me to solve the error!