Support for something like this: ``` java public class Model <T extends Parcelable> { List<T> items; } ``` Where the type of T could be determined to determine `List<T>`
Support for something like this:
Where the type of T could be determined to determine
List<T>