I wrote a function for my cache to retrieve a specific object. This way I don\'t need to cast it .
@SuppressWarnings(\"unchecked\") public static
Try this-
List inList = (List)Test.inCache(List.class, title);
And you can do also -
List inList = Test.inCache((Class extends List>)List.class, token);