I have some Map 0f Map 0f List
I created such interface for shorthand it
public interface ShortName extends Map<String, Map<String, List<String>>>
But when I try to instantiate real object it give me ClassCastExcpetion
ShortName testObj = (ShortName) new HashMap<String, Map<String, List<String>>>();
Is there any way to make short type for Map